Exemplo n.º 1
0
 public SchedulesController(HttpListenerContext context) : base(context)
 {
     _schedulePersistence = new SchedulePersistence();
     _roomPersistence     = new RoomPersistence();
     _moviePersistence    = new MoviePersistence();
 }
Exemplo n.º 2
0
 public MoviesController(HttpListenerContext context) : base(context)
 {
     _moviePersistence = new MoviePersistence();
 }