50 lines
1.4 KiB
C#
50 lines
1.4 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace TicketOffice.Models;
|
|
|
|
public class Ticket
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Required(ErrorMessage = "Поле має бути заповненим")]
|
|
[Display(Name = "Ім'я пасажира")]
|
|
public string PassengerFirstName { get; set; } = null!;
|
|
|
|
[Required(ErrorMessage = "Поле має бути заповненим")]
|
|
[Display(Name = "Прізвище пасажира")]
|
|
public string PassengerLastName { get; set; } = null!;
|
|
|
|
[Required(ErrorMessage = "Поле має бути заповненим")]
|
|
[Display(Name = "Номер місця пасажира")]
|
|
public int PassengerPlace { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Дата придбання квитка")]
|
|
public DateTime OderDate { get; set; }
|
|
|
|
|
|
[Required]
|
|
public ICollection<TicketCity> Cities { get; set; } = null!;
|
|
|
|
[ForeignKey("User")]
|
|
public int UserId { get; set; }
|
|
public User User { get; set; } = null!;
|
|
|
|
[ForeignKey("Route")]
|
|
public int RouteId { get; set; }
|
|
public Route Route { get; set; } = null!;
|
|
|
|
public double GetTotalCost()
|
|
{
|
|
double cost = 0;
|
|
|
|
for (int i = 1; i < Cities.Count; i++)
|
|
{
|
|
cost += Cities.ToList()[i].CostFromPreviousCity ?? 0;
|
|
}
|
|
|
|
return cost;
|
|
}
|
|
} |