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