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 MenuService(PermissionSystemContext context, IApplicationService applicationService, ILoggerFactory loggerFactory, IUserRoleService userRoleService, IUserRoleJurisdictionService userRoleJurisdictionService) : base(context) { _applicationService = applicationService; _userRoleService = userRoleService; _userRoleJurisdictionService = userRoleJurisdictionService; _logger = loggerFactory.CreateLogger <MenuService>(); }
public RoleController(IRoleService roleService, IOptions <AdminSiteOption> setting, IMapper mapper, ILoggerFactory loggerFactory, IUserRoleJurisdictionService userRoleJurisdictionService) { _roleService = roleService; _mapper = mapper; _userRoleJurisdictionService = userRoleJurisdictionService; _logger = loggerFactory.CreateLogger <RoleController>(); _setting = setting.Value; }
public MenuController(IApplicationService applicationService, IMenuService menuService, IOptions <AdminSiteOption> setting, ILogger <MenuController> logger, IUserRoleJurisdictionService roleJurisdictionService) { _applicationService = applicationService; _menuService = menuService; _logger = logger; _roleJurisdictionService = roleJurisdictionService; _setting = setting.Value; }
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 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 BaseController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService) { _userRoleJurisdictionService = userRoleJurisdictionService; _moduleInfoService = moduleInfoService; }
public SupplierController(IUserRoleJurisdictionService userRoleJurisdictionService, IModuleInfoService moduleInfoService) : base(userRoleJurisdictionService, moduleInfoService) { _moduleInfoService = moduleInfoService; _userRoleJurisdictionService = userRoleJurisdictionService; }
public RoleRequirement(IServiceProvider serviceProvider) { _menuService = serviceProvider.GetService <IMenuService>(); _userRoleJurisdictionService = serviceProvider.GetService <IUserRoleJurisdictionService>(); }
public RoleService(PermissionSystemContext context, IUserRoleJurisdictionService roleJurisdiction) : base(context) { _roleJurisdiction = roleJurisdiction; }
public UserRoleService(PermissionSystemContext context, IUserRoleJurisdictionService userRoleJurisdictionService) : base(context) { _userRoleJurisdictionService = userRoleJurisdictionService; }