public SchedulesController(HttpListenerContext context) : base(context) { _schedulePersistence = new SchedulePersistence(); _roomPersistence = new RoomPersistence(); _moviePersistence = new MoviePersistence(); }
public MoviesController(HttpListenerContext context) : base(context) { _moviePersistence = new MoviePersistence(); }