if cities in route you're searching for intersects with cities in the smb's ticket for the route, taken place will be unavailable and capacity in the search results will be decreased
28 lines
972 B
C#
28 lines
972 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace TicketOffice.Models;
|
|
|
|
public class RouteCity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[MaxLength(24, ErrorMessage = "Назва міста не може бути більше 24 символів"),
|
|
MinLength(2, ErrorMessage = "Назва міста не може бути менше 2 символів")]
|
|
[Display(Name = "Назва міста")]
|
|
[Required(ErrorMessage = "Поле має бути заповненим")]
|
|
public string Name { get; set; }
|
|
|
|
[Display(Name = "Дата відправлення")]
|
|
[DataType(DataType.Date)]
|
|
public DateTime? ArrivalTime { get; set; }
|
|
|
|
[Display(Name = "Дата прибуття")]
|
|
[DataType(DataType.Date)]
|
|
public DateTime? DepartureTime { get; set; }
|
|
|
|
[ForeignKey("Route")]
|
|
public int RouteId { get; set; }
|
|
public Route Route { get; set; }
|
|
} |