public CreateOrderHandler(IBusPublisher busPublisher,
                           ICustomerHttpService customerHttpService,
                           OrderDBContext dbContext,
                           ILogger <CreateOrderHandler> logger)
 {
     _busPublisher        = busPublisher;
     _customerHttpService = customerHttpService;
     _dbContext           = dbContext;
     _logger = logger;
 }
Beispiel #2
0
 public TokenController(IAuthenticationService authService,
                        ICustomerHttpService customerHttpService)
 {
     _authService         = authService;
     _customerHttpService = customerHttpService;
 }