Example #1
0
 public CustomerController(
     ICustomerQueryService customerQueryService,
     IConfiguration configuration)
 {
     _customerQueryService = customerQueryService;
     _configuration        = configuration;
 }
 public CustomerController(
     IMediator mediator,
     IIndex <ServiceType, ICustomerQueryService> customerQueryServiceTypes)
 {
     _mediator             = mediator;
     _customerQueryService = customerQueryServiceTypes[ServiceType.Cache];
 }
Example #3
0
 public CustomerController(IDomainManagerService domainManagerService,
                           ICustomerService CustomerService,
                           ICustomerQueryService CustomerQueryService) : base(domainManagerService)
 {
     _CustomerService      = CustomerService;
     _CustomerQueryService = CustomerQueryService;
 }
 public CustomerController(IMapper mapper,
                           ICustomerQueryService customerQueryService,
                           ICustomerCommandService customerCommandService)
 {
     _mapper = mapper;
     _customerQueryService   = customerQueryService;
     _customerCommandService = customerCommandService;
 }
Example #5
0
 public CustomerController(
     ILogger <CustomerController> logger,
     IMediator mediator,
     ICustomerQueryService customerQueryService)
 {
     _logger               = logger;
     _mediator             = mediator;
     _customerQueryService = customerQueryService;
 }
 public CustomerQueryServiceProxy(
     IIndex <ServiceType, ICustomerQueryService> customerQueryServiceTypes,
     IDistributedCache distributedCache,
     IOptions <CachingTimeOptions> optionsCachingTime)
 {
     _customerQueryService = customerQueryServiceTypes[ServiceType.NoCache];
     _distributedCache     = distributedCache;
     _optionsCachingTime   = optionsCachingTime;
 }
 public OrdersController(
     IProductQueryService productService,
     ICustomerQueryService customerService,
     IOrderCommandService commandService,
     IOrderQueryService queryService)
 {
     _customerService = customerService;
     __productService = productService;
     _command         = commandService;
     _query           = queryService;
 }
 public HomeController(
     ILogger <HomeController> logger,
     ICustomerQueryService customerQueryService,
     ICategoryQueryService categoryQueryService,
     IProductQueryService productQueryService,
     IOrderQueryService orderQueryService)
 {
     _logger          = logger;
     _categoryService = categoryQueryService;
     _customerService = customerQueryService;
     _orderService    = orderQueryService;
     _productService  = productQueryService;
 }
Example #9
0
 public CustomerController(ICustomerCommandService customerCommandService,
                           ICustomerQueryService customerQueryService)
 {
     _customerCommandService = customerCommandService;
     _customerQueryService   = customerQueryService;
 }
Example #10
0
 public CustomersController(ICustomerService customerService, ICustomerQueryService customerQueryService)
 {
     _customerService      = customerService;
     _customerQueryService = customerQueryService;
 }
 public CustomerController(IService <Customers> service,
                           ICustomerQueryService queryService) : base(service)
 {
     _queryService = queryService;
 }
Example #12
0
 public CustomerController(ICommandBus bus, ICustomerQueryService customerQueryService) : base(bus)
 {
     _customerQueryService = customerQueryService;
 }
Example #13
0
 OrderQueryService(Order order, ICustomerQueryService customerrQueryService)
 {
     _customerrQueryService = customerrQueryService;
 }
Example #14
0
 public CustomerAddressController(ICommandBus bus, ICustomerQueryService customerQueryService, IShopQueryService shopQueryService) : base(bus)
 {
     _customerQueryService = customerQueryService;
     _shopQueryService     = shopQueryService;
 }
Example #15
0
 public CustomerController(ICustomerQueryService queryService, ICustomerCommandService commandService)
 {
     _command = commandService;
     _query   = queryService;
 }
Example #16
0
 public HomeController(IProductService productService, ICustomerQueryService customerQueryService)
 {
     _productService       = productService;
     _customerQueryService = customerQueryService;
 }
Example #17
0
 public ExportCustomerController(ICustomerQueryService customerQueryService)
 {
     _customerQueryService = customerQueryService;
 }