Ejemplo n.º 1
0
 public ClotheTypeService(IBaseRepository <ClotheType> repository, IUserService userService, IOrderClotheService orderClotheService) : base(repository)
 {
     UserService        = userService;
     OrderClotheService = orderClotheService;
 }
Ejemplo n.º 2
0
 public ClothesController(IClothesTrackingService clothesTrackingService, IClotheTypeService clotheService, IOrderClotheService orderClotheService, IUserService userService)
 {
     this.ClothesTypeService     = clotheService;
     this.ClothesTrackingService = clothesTrackingService;
     this.OrderClotheService     = orderClotheService;
     this.UserService            = userService;
 }
Ejemplo n.º 3
0
 public OrderService(IBaseRepository <Order> repository, IOrdersTrackingService OrdersTrackingService, IClothesTrackingService clotheTrackingService, IOrderClotheService orderClotheService) : base(repository)
 {
     this.OrderClotheService    = orderClotheService;
     this.OrdersTrackingService = OrdersTrackingService;
     this.ClotheTrackingService = clotheTrackingService;
 }