public MovieEntry(int theatre, string title, Showtime showing) { Theatre = theatre; Title = title; Showings = new List <Showtime>(); Showings.Add(showing); }
public MovieEntry(int id, int theatre, string title, Showtime time, int seats, string posterpath) { Id = id; Theatre = theatre; Title = title; Time = time; SeatsAvailable = seats; PosterPath = posterpath; }
public void AddTime(Showtime time) { Showings.Add(time); }