public PurchaseModel(List <TicketModel> tickets, MovieBookModel movieBookModel, string hall, TheaterBookModel theaterBookModel, string technology, string seanceData, string seanceTime) { this.Tickets = tickets; this.MovieBookModel = movieBookModel; this.Hall = hall; this.TheaterBookModel = theaterBookModel; this.Tecnology = technology; this.seanceDate = seanceData; this.SeanceTime = seanceTime; }
public BookDataModel(long id, string hallName, DateTime dateSeance, MovieBookModel movieBookModel, TimeSeanceModel timeSeanceModel, TheaterBookModel theaterBookModel, string technology, List <PriceModel> prices) { this.Id = id; this.HallName = hallName; this.DateSeance = dateSeance; this.MovieBookModel = movieBookModel; this.TimeSeanceModel = timeSeanceModel; this.TheaterBookModel = theaterBookModel; this.Technology = technology; this.Prices = prices; }