public BatchController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IBatchInformationService batchInformationService) : base(userRoleJurisdictionService, moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; _batchInformationService = batchInformationService; }
public UsersController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IUserRoleService userRoleService, IUserService userService) : base(userRoleJurisdictionService, moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; _userRoleService = userRoleService; _userService = userService; }
public SystemService(IUnitOfWork <AdminDbContext> uow, IConfigRepository configRepository, IModuleInfoService moduleInfoService, IPermissionService permissionService, IAccountService accountService, IRoleRepository roleRepository) { _uow = uow; _configRepository = configRepository; _moduleInfoService = moduleInfoService; _permissionService = permissionService; _accountService = accountService; _roleRepository = roleRepository; }
public SystemService(IConfigRepository configRepository, IModuleInfoService moduleInfoService, IPermissionService permissionService, IRoleRepository roleRepository, ICacheHandler cache, IAccountRepository accountRepository, IAccountRoleRepository accountRoleRepository) { _configRepository = configRepository; _moduleInfoService = moduleInfoService; _permissionService = permissionService; _roleRepository = roleRepository; _cache = cache; _accountRepository = accountRepository; _accountRoleRepository = accountRoleRepository; }
public SystemService(IUnitOfWork <AdminDbContext> uow, IConfigRepository configRepository, IModuleInfoService moduleInfoService, ICacheHandler cache, IAccountRepository accountRepository, IAccountRoleRepository accountRoleRepository) { _uow = uow; _configRepository = configRepository; _moduleInfoService = moduleInfoService; //_roleRepository = roleRepository; _cache = cache; _accountRepository = accountRepository; _accountRoleRepository = accountRoleRepository; }
public OrderController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IOrderService orderService, IOrderDetailService orderDetailService) : base(userRoleJurisdictionService, moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; _orderService = orderService; _orderDetailService = orderDetailService; }
public bannersController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IBannerService bannerService, IBannerDetailService bannerDetailService, IBatchInformationService batchInformationService, IHostingEnvironment hostingEnvironment) : base(userRoleJurisdictionService, moduleInfoService) { _moduleInfoService = moduleInfoService; _userRoleJurisdictionService = userRoleJurisdictionService; _hostingEnvironment = hostingEnvironment; _batchInformationService = batchInformationService; _bannerService = bannerService; _bannerDetailService = bannerDetailService; }
public ModuleInfoController( IModuleInfoService moduleInfoService, IMapper mapper, ILogger <ModuleInfoController> logger, IUriComposer uriComposer, IUserInfoService userInfoService) : base(userInfoService, functionId) { _moduleInfoService = moduleInfoService; _mapper = mapper; _logger = logger; _uriComposer = uriComposer; }
public ProductsController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IProductInformationService productInformationService, IBatchInformationService batchInformationService, IHostingEnvironment hostingEnvironment) : base(userRoleJurisdictionService, moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; _hostingEnvironment = hostingEnvironment; _productInformationService = productInformationService; _batchInformationService = batchInformationService; }
public EnterCustomController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService, IProductInformationService productInformationService, IBatchInformationService batchInformationService, IHostingEnvironment hostingEnvironment, IBannerService bannerService, IBannerDetailService bannerDetailService, ICouponService couponService, IOrderService orderService, IOrderDetailService orderDetailService) : base(userRoleJurisdictionService, moduleInfoService) { _hostingEnvironment = hostingEnvironment; _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; _productInformationService = productInformationService; _batchInformationService = batchInformationService; _bannerService = bannerService; _bannerDetailService = bannerDetailService; _couponService = couponService; _orderService = orderService; _orderDetailService = orderDetailService; }
public ModuleInfoController(IModuleInfoService service) { _service = service; }
public BaseController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; }
public SupplierController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService) : base(userRoleJurisdictionService, moduleInfoService) { _moduleInfoService = moduleInfoService; _userRoleJurisdictionService = userRoleJurisdictionService; }