public ShopsCustomerSubsetReportController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Exemplo n.º 2
0
 public ShopLogController(IShopQueryService personQueryService)
 {
     _personQueryService = personQueryService;
 }
 public MarketerShopsController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Exemplo n.º 4
0
 public ShopFactorYearlyChartController(IShopQueryService shopQueryService)
 {
     _shopQueryService = shopQueryService;
 }
Exemplo n.º 5
0
 public ShopController(ICommandBus bus, IShopQueryService personQueryService) : base(bus)
 {
     _personQueryService = personQueryService;
 }
Exemplo n.º 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;
 }
Exemplo n.º 9
0
 public ShopController(ICommandBus bus, IShopQueryService shopQueryService) : base(bus)
 {
     _shopQueryService = shopQueryService;
 }