Ejemplo n.º 1
0
 public RoleController(ISys_userServices userServices, ISys_rolemenuServices rolemenuServices, ISys_roleServices roleServices, ISys_menuServices menuServices)
 {
     _userServices     = userServices;
     _menuServices     = menuServices;
     _roleServices     = roleServices;
     _rolemenuServices = rolemenuServices;
 }
Ejemplo n.º 2
0
 public HomeController(ISys_logServices logServices,
                       ISys_userServices sysUserServices,
                       ISys_roleServices roleServices, IMemoryCache cache)
 {
     _logServices  = logServices;
     _userServices = sysUserServices;
     _roleServices = roleServices;
     _cache        = cache;
 }
Ejemplo n.º 3
0
 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;
 }
Ejemplo n.º 4
0
 public MenuViewComponent(ISys_roleServices roleServices,
                          IHttpContextAccessor httpContext)
 {
     _roleServices = roleServices;
     _httpContext  = httpContext;
 }
Ejemplo n.º 5
0
 public UserController(ISys_roleServices roleServices, ISys_deptServices deptServices, ISys_userServices userServices)
 {
     _roleServices = roleServices;
     _deptServices = deptServices;
     _userServices = userServices;
 }