public OrdersController(
     IOrdersQueryService ordersQueryService,
     IOrderOpsService createOrderService)
 {
     this.ordersQueryService = ordersQueryService;
     this.orderOpsService    = createOrderService;
 }
 public OrderOpsService(
     IUsersQueryService usersQueryService,
     IOrdersCommandService ordersCommandService,
     IAddressCommandService addressCommandService,
     IOrdersQueryService ordersQueryService)
 {
     this.usersQueryService     = usersQueryService;
     this.ordersCommandService  = ordersCommandService;
     this.addressCommandService = addressCommandService;
     this.ordersQueryService    = ordersQueryService;
 }
Пример #3
0
 public UsersController(
     IOrdersQueryService ordersQueryService)
 {
     this.ordersQueryService = ordersQueryService;
 }