auto.bus_api/Server/Models/TicketGroup.cs
cuqmbr 8f104c786e feat: add statistics in json format
refactor: move methods to their proper classes
2023-05-10 23:16:53 +03:00

26 lines
486 B
C#

using System.ComponentModel.DataAnnotations;
namespace Server.Models;
public class TicketGroup
{
[Key]
public int Id { get; set; }
public string UserId { get; set; } = null!;
public User User { get; set; } = null!;
public virtual IList<Ticket> Tickets { get; set; }
public double GetCost()
{
double cost = 0;
foreach (var ticket in Tickets)
{
cost += ticket.GetCost();
}
return cost;
}
}