コード例 #1
0
 public EventController(INotificationHandler <DomainNotification> notifications,
                        IMediatorHandler mediatorHandler, IEventAppService eventAppService, IHubContext <EventHub, IEventClient> eventHub)
     : base(notifications, mediatorHandler)
 {
     _eventAppService = eventAppService;
     _eventHub        = eventHub;
 }
コード例 #2
0
 public EventDetail(
     IEventAppService eventAppService,
     NavigationManager navigationManager)
 {
     _eventAppService   = eventAppService;
     _navigationManager = navigationManager;
 }
コード例 #3
0
 public CreateEvent(
     IEventAppService eventAppService,
     NavigationManager navigationManager)
 {
     _eventAppService   = eventAppService;
     _navigationManager = navigationManager;
 }
コード例 #4
0
 public EventController(IEventAppService eventService,
                        UserManager <ApplicationUser> userManager,
                        IMapper mapper)
 {
     _eventService = eventService;
     _userManager  = userManager;
     _mapper       = mapper;
 }
コード例 #5
0
 public EventAppService_Tests()
 {
     _eventAppService = GetRequiredService <IEventAppService>();
 }
コード例 #6
0
ファイル: EventController.cs プロジェクト: EversonJean/Events
 public EventController(IEventAppService service)
 {
     _service = service;
 }
コード例 #7
0
 public EventAppService_Tests()
 {
     _eventAppService = Resolve<IEventAppService>();
 }
コード例 #8
0
 public EventsHandler(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
コード例 #9
0
 public EventAppService_Tests()
 {
     _eventAppService = Resolve <IEventAppService>();
 }
コード例 #10
0
 public EventController(IMapper mapper, IEventAppService eventApp)
 {
     _mapper   = mapper;
     _eventApp = eventApp;
 }
コード例 #11
0
 public EventController(IEventAppService eventAppService, ILocalAppService localAppService, IMapper mapper)
 {
     _eventAppService = eventAppService;
     _mapper          = mapper;
 }
コード例 #12
0
 public CreateModalModel(
     IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
コード例 #13
0
ファイル: Index.razor.cs プロジェクト: zyuanchang/abp-samples
 public Index(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
コード例 #14
0
 public EditModalModel(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
コード例 #15
0
 public EventsController(IEventAppService eventAppService,
                         IDomainNotificationHandler <DomainNotification> notifications,
                         IUser user) : base(notifications, user)
 {
     _eventAppService = eventAppService;
 }
コード例 #16
0
ファイル: EventsController.cs プロジェクト: xhu218/zjyx
 public EventsController(IEventAppService eventAppService)
 {
     _eventAppService = eventAppService;
 }
コード例 #17
0
 public EventWarningController(IEventAppService eventAppService, IEventWarningAppService eventWarningAppService)
 {
     this.eventAppService        = eventAppService;
     this.eventWarningAppService = eventWarningAppService;
 }
コード例 #18
0
ファイル: EventController.cs プロジェクト: mvfavila/Dafa
 public EventController(IEventAppService eventAppService)
 {
     this.eventAppService = eventAppService;
 }