Esempio n. 1
0
 public CatelogyController(ICatelogyService catelogyServices) : base(null, null)
 {
     _catelogyServices = catelogyServices;
 }
Esempio n. 2
0
 public OrderController(ICatelogyService categoryService, ILocationServices locationService, IOrderService orderSerivce, IStoreServices storeService, IUserService userService) : base(storeService, userService)
 {
     _categoryService = categoryService;
     _locationService = locationService;
     _orderService    = orderSerivce;
 }