Added IsPurchased method to the TicketGroup class.

This commit is contained in:
KazanskiyMaks 2023-05-22 13:48:57 +03:00
parent 261b928533
commit 1575e56516

View File

@ -9,7 +9,6 @@ public class TicketGroup
public DateTime PurchaseDateTimeUtc { get; set; } = DateTime.MinValue;
public bool IsReturned { get; set; } = false;
public string UserId { get; set; } = null!;
public User User { get; set; } = null!;
@ -89,4 +88,5 @@ public class TicketGroup
.First(ra => ra.AddressId == Tickets.Last().LastRouteAddressId)
.Address;
}
public bool IsPurchased() => PurchaseDateTimeUtc != DateTime.MinValue;
}