Example #1
0
 public ShowTimesController(IShowTimesService showTimesService, IBookingsService bookingsService, UserManager <IdentityUser> userManager)
 {
     _showTimesService = showTimesService;
     _bookingsService  = bookingsService;
     _userManager      = userManager;
 }
Example #2
0
 public ShowsController(IShowsService showsService, IShowTimesService showTimesService)
 {
     _showsService     = showsService;
     _showTimesService = showTimesService;
 }