Beispiel #1
0
 public ClothesController(IClothesTrackingService clothesTrackingService, IClotheTypeService clotheService, IOrderClotheService orderClotheService, IUserService userService)
 {
     this.ClothesTypeService     = clotheService;
     this.ClothesTrackingService = clothesTrackingService;
     this.OrderClotheService     = orderClotheService;
     this.UserService            = userService;
 }
Beispiel #2
0
 public OrdersController(IUserService userService, IOrdersTrackingService ordersTrackingService, IOrderService ordersService, IClothesTrackingService clothesTrackingService)
 {
     this.OrdersService          = ordersService;
     this.UserService            = userService;
     this.OrdersTrackingService  = ordersTrackingService;
     this.ClothesTrackingService = clothesTrackingService;
 }
Beispiel #3
0
 public OrderService(IBaseRepository <Order> repository, IOrdersTrackingService OrdersTrackingService, IClothesTrackingService clotheTrackingService, IOrderClotheService orderClotheService) : base(repository)
 {
     this.OrderClotheService    = orderClotheService;
     this.OrdersTrackingService = OrdersTrackingService;
     this.ClotheTrackingService = clotheTrackingService;
 }