Exemple #1
0
 public EventController(INotificationHandler <DomainNotification> notifications,
                        IMediatorHandler mediatorHandler, IEventAppService eventAppService, IHubContext <EventHub, IEventClient> eventHub)
     : base(notifications, mediatorHandler)
 {
     _eventAppService = eventAppService;
     _eventHub        = eventHub;
 }
Exemple #2
0
 public EventDetail(
     IEventAppService eventAppService,
     NavigationManager navigationManager)
 {
     _eventAppService   = eventAppService;
     _navigationManager = navigationManager;
 }
 public CreateEvent(
     IEventAppService eventAppService,
     NavigationManager navigationManager)
 {
     _eventAppService   = eventAppService;
     _navigationManager = navigationManager;
 }
Exemple #4
0
 public EventController(IEventAppService eventService,
                        UserManager <ApplicationUser> userManager,
                        IMapper mapper)
 {
     _eventService = eventService;
     _userManager  = userManager;
     _mapper       = mapper;
 }
 public EventAppService_Tests()
 {
     _eventAppService = GetRequiredService <IEventAppService>();
 }
 public EventController(IEventAppService service)
 {
     _service = service;
 }
 public EventAppService_Tests()
 {
     _eventAppService = Resolve<IEventAppService>();
 }
Exemple #8
0
 public EventsHandler(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
 public EventAppService_Tests()
 {
     _eventAppService = Resolve <IEventAppService>();
 }
Exemple #10
0
 public EventController(IMapper mapper, IEventAppService eventApp)
 {
     _mapper   = mapper;
     _eventApp = eventApp;
 }
Exemple #11
0
 public EventController(IEventAppService eventAppService, ILocalAppService localAppService, IMapper mapper)
 {
     _eventAppService = eventAppService;
     _mapper          = mapper;
 }
Exemple #12
0
 public CreateModalModel(
     IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
Exemple #13
0
 public Index(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
Exemple #14
0
 public EditModalModel(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
Exemple #15
0
 public EventsController(IEventAppService eventAppService,
                         IDomainNotificationHandler <DomainNotification> notifications,
                         IUser user) : base(notifications, user)
 {
     _eventAppService = eventAppService;
 }
Exemple #16
0
 public EventsController(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
 public EventWarningController(IEventAppService eventAppService, IEventWarningAppService eventWarningAppService)
 {
     this.eventAppService        = eventAppService;
     this.eventWarningAppService = eventWarningAppService;
 }
Exemple #18
0
 public EventController(IEventAppService eventAppService)
 {
     this.eventAppService = eventAppService;
 }