コード例 #1
0
 public PurchaseApplication(IMapper mapper,
                            IUnitOfWork uow,
                            IMediatorHandler mediator,
                            IHttpContextAccessor httpContextAccessor,
                            IDealerApplication dealerApplication,
                            IPurchaseRepository purchaseRepository,
                            INotificationHandler <ApplicationNotification> notifications) : base(uow, mediator, httpContextAccessor, notifications)
 {
     _mapper             = mapper;
     _mediator           = mediator;
     _dealerApplication  = dealerApplication;
     _purchaseRepository = purchaseRepository;
 }
コード例 #2
0
 public LoginController(INotificationHandler <ApplicationNotification> notifications, TokenDescriptor tokenDescriptor, IDealerApplication dealerApplication) : base(notifications)
 {
     this.TokenDescriptor = tokenDescriptor;
     _dealerApplication   = dealerApplication;
 }
コード例 #3
0
 public DealerController(INotificationHandler <ApplicationNotification> notifications,
                         IDealerApplication dealerApplication) : base(notifications)
 {
     _dealerApplication = dealerApplication;
 }