public RoleController(ISys_userServices userServices, ISys_rolemenuServices rolemenuServices, ISys_roleServices roleServices, ISys_menuServices menuServices) { _userServices = userServices; _menuServices = menuServices; _roleServices = roleServices; _rolemenuServices = rolemenuServices; }
public HomeController(ISys_logServices logServices, ISys_userServices sysUserServices, ISys_roleServices roleServices, IMemoryCache cache) { _logServices = logServices; _userServices = sysUserServices; _roleServices = roleServices; _cache = cache; }
public HomeController(ISys_logServices logServices, ISys_userServices sysUserServices, ISys_roleServices roleServices, IMemoryCache cache, IMediator mediator) { _logServices = logServices; _userServices = sysUserServices; _roleServices = roleServices; _cache = cache; _mediator = mediator; }
public MenuViewComponent(ISys_roleServices roleServices, IHttpContextAccessor httpContext) { _roleServices = roleServices; _httpContext = httpContext; }
public UserController(ISys_roleServices roleServices, ISys_deptServices deptServices, ISys_userServices userServices) { _roleServices = roleServices; _deptServices = deptServices; _userServices = userServices; }