public AppController(IStoreServices iStoreServices, IOrderService iOrderServices, IUserService iUserServices, IAppService iAppServices, IKerryService iKerryServices) { this._iStoreServices = iStoreServices; _iOrderServices = iOrderServices; _iUserServices = iUserServices; _iAppServices = iAppServices; _iKerryServices = iKerryServices; }
public OrderController(ICategoryService categoryService, ILocationServices locationService, IOrderService orderSerivce, IStoreServices storeService, IUserService userService, IKerryService kerryService, IProductServices productServices) : base(storeService, userService) { _categoryService = categoryService; _locationService = locationService; _orderService = orderSerivce; _iKerryService = kerryService; _productServices = productServices; }
public OrderController(IKerryService iKerryServices, IOrderService orderSerivce, IStoreServices storeService) { _iKerryServices = iKerryServices; _orderService = orderSerivce; _storeService = storeService; }