Пример #1
0
 public SpectacleController(ISeanceService seanceService, ISpectacleService spectacleService, ISeanceChangedNotificationService notificationService)
 {
     mSeanceService = seanceService;
     mSpectacleService = spectacleService;
     mNotificationService = notificationService;
 }
Пример #2
0
 public HomeController(ISpectacleService service)
 {
     mService = service;
 }
Пример #3
0
 public UserProfileController(UserManager <ApplicationUser> userManager, ISpectacleService spectacleService, IMapper mapper)
 {
     _userManager      = userManager;
     _spectacleService = spectacleService;
     _mapper           = mapper;
 }
 public NavigationController(ISpectacleService spectacleService, ISeanceService seanceService)
 {
     mSpectacleService = spectacleService;
     mSeanceService = seanceService;
 }
Пример #5
0
 public SpectaclesController(ISpectacleService spectacleService, IMapper mapper)
 {
     _spectacleService = spectacleService;
     _mapper           = mapper;
 }