コード例 #1
0
 public ShowTimesController(IShowTimesService showTimesService, IBookingsService bookingsService, UserManager <IdentityUser> userManager)
 {
     _showTimesService = showTimesService;
     _bookingsService  = bookingsService;
     _userManager      = userManager;
 }
コード例 #2
0
ファイル: ShowsController.cs プロジェクト: pacmad/Theatre-1
 public ShowsController(IShowsService showsService, IShowTimesService showTimesService)
 {
     _showsService     = showsService;
     _showTimesService = showTimesService;
 }