Exemple #1
0
 public OrderService(IOrderFactory orderFactory,
                     IUnitOfWork unitOfWork,
                     ICenterProductService centerProductService,
                     IUserService userService)
 {
     this.userService          = userService;
     this.centerProductService = centerProductService;
     this.unitOfWork           = unitOfWork;
     this.orderFactory         = orderFactory;
 }
Exemple #2
0
 public CenterProductsController(ICenterProductService centerProductService)
 {
     this.centerProductService = centerProductService;
 }