public ShopsCustomerSubsetReportController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Beispiel #2
0
 public ShopLogController(IShopQueryService personQueryService)
 {
     _personQueryService = personQueryService;
 }
 public MarketerShopsController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Beispiel #4
0
 public ShopFactorYearlyChartController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Beispiel #5
0
 public ShopController(ICommandBus bus, IShopQueryService personQueryService) : base(bus)
 {
     _personQueryService = personQueryService;
 }
Beispiel #6
0
 public CustomerAddressController(ICommandBus bus, ICustomerQueryService customerQueryService, IShopQueryService shopQueryService) : base(bus)
 {
     _customerQueryService = customerQueryService;
     _shopQueryService     = shopQueryService;
 }
 public SellingShopController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
 public CityShopsController(IShopQueryService personQueryService)
 {
     _personQueryService = personQueryService;
 }
Beispiel #9
0
 public ShopController(ICommandBus bus, IShopQueryService shopQueryService) : base(bus)
 {
     _shopQueryService = shopQueryService;
 }