style: remove tags to improve readability
This commit is contained in:
parent
3cc659de6a
commit
b447abd06a
@ -4,24 +4,12 @@ namespace TicketOffice.Models;
|
||||
|
||||
public class City
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30, ErrorMessage = "City name can't be more than 30"), MinLength(2, ErrorMessage = "City name can't be less than 2")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataType(DataType.DateTime)]
|
||||
public DateTime? ArrivalTime { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataType(DataType.DateTime)]
|
||||
public DateTime? DepartureTime { get; set; }
|
||||
|
||||
[Required]
|
||||
public decimal Distance { get; set; }
|
||||
|
||||
|
||||
public int RouteId { get; set; }
|
||||
public Route Route { get; set; }
|
||||
}
|
@ -4,20 +4,11 @@ namespace TicketOffice.Models;
|
||||
|
||||
public class Route
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(4, ErrorMessage = "Route number must be 4"), MinLength(4, ErrorMessage = "Route number must be 4")]
|
||||
public string Number { get; set; }
|
||||
|
||||
public ICollection<City>? Cities { get; set; }
|
||||
|
||||
[Required]
|
||||
[Range(5, 50, ErrorMessage = "Capacity must be between 5 and 50")]
|
||||
public int Capacity { get; set; }
|
||||
|
||||
public int RemainingCapacity { get; set; }
|
||||
|
||||
|
||||
public ICollection<City> Cities { get; set; }
|
||||
public ICollection<Ticket>? Tickets { get; set; }
|
||||
}
|
@ -1,10 +1,7 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace TicketOffice.Models;
|
||||
|
||||
public class Ticket
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
public int UserId { get; set; }
|
||||
|
@ -4,33 +4,15 @@ namespace TicketOffice.Models;
|
||||
|
||||
public class User
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(16, ErrorMessage = "First name lenght can't be more than 16"), MinLength(2, ErrorMessage = "First name can't be less than 2")]
|
||||
public string FirstName { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(16, ErrorMessage = "Last name lenght can't be more than 16"), MinLength(2, ErrorMessage = "Last name can't be less than 2")]
|
||||
public string LastName { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? Patronymic { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(16, ErrorMessage = "Patronymic lenght can't be more than 16"), MinLength(2, ErrorMessage = "Patronymic can't be less than 2")]
|
||||
public string Patronymic { get; set; }
|
||||
|
||||
[Required]
|
||||
[EmailAddress]
|
||||
public string Email { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataType(DataType.Password)]
|
||||
[StringLength(64, ErrorMessage = "Password lenght can't be more than 64"), MinLength(8, ErrorMessage = "Password lenght can't be less than 8")]
|
||||
//[RegularExpression()]
|
||||
public string Password { get; set; }
|
||||
|
||||
public ICollection<Ticket>? Tickets { get; set; }
|
||||
|
||||
[Required]
|
||||
public bool IsManager { get; set; } = false;
|
||||
public ICollection<Ticket>? Tickets { get; set; }
|
||||
public bool IsManager { get; set; }
|
||||
}
|
Loading…
Reference in New Issue
Block a user