public HomeController(INewService newService, IWorkContext workContext, ICountryService countryService, IGoodsTypeService goodsTypeService, ICustomerService customerService, IAuthenticationService authenticationService) { _newService = newService; _workContext = workContext; _countryService = countryService; _goodsTypeService = goodsTypeService; _customerService = customerService; _authenticationService = authenticationService; }
public BillingController(IWorkContext workContext, ICountryService countryService, INewService newService, IGoodsTypeService goodsTypeService, IFreightService freightService, ICustomerService customerService) { _workContext = workContext; _countryService = countryService; _goodsTypeService = goodsTypeService; _freightService = freightService; _customerService = customerService; _newService = newService; }
public JoinService(IServiceProvider serviceProvider) { _storageService = serviceProvider.GetRequiredService <IStorageService>(); _goodsService = serviceProvider.GetRequiredService <IGoodsService>(); _goodsTypeService = serviceProvider.GetRequiredService <IGoodsTypeService>(); _usersService = serviceProvider.GetRequiredService <IUsersService>(); _regionService = serviceProvider.GetRequiredService <IRegionService>(); _goodsStorageService = serviceProvider.GetRequiredService <IGoodsStorageService>(); _storageRegionService = serviceProvider.GetRequiredService <IStorageRegionService>(); }
public LeaveService(IServiceProvider serviceProvider) { _goodsStorageService = serviceProvider.GetRequiredService <IGoodsStorageService>(); _unitOfWork = serviceProvider.GetRequiredService <IUnitOfWork>(); _goodsService = serviceProvider.GetRequiredService <IGoodsService>(); _regionService = serviceProvider.GetRequiredService <IRegionService>(); _storageService = serviceProvider.GetRequiredService <IStorageService>(); _goodsTypeService = serviceProvider.GetRequiredService <IGoodsTypeService>(); _usersService = serviceProvider.GetRequiredService <IUsersService>(); _repository = serviceProvider.GetRequiredService <IRepository <GoodsLeave, int> >(); }
public BillingController(IBillingService billingService, ICustomerService customerService, IFreightService freightService, IFeeManageService feeManageService, ICountryService countryService, IGoodsTypeService goodsTypeService, IWorkContext workContext) { _billingService = billingService; _feeManageService = feeManageService; _goodsTypeService = goodsTypeService; _countryService = countryService; _workContext = workContext; _freightService = freightService; _customerService = customerService; }
public GoodsTypeController(IGoodsTypeService goodsTypeService) { _goodsTypeService = goodsTypeService; }