Ejemplo n.º 1
0
 public RoleController(IRoleService roleService, ILogService logService, ISystemConfigurationService systemConfigurationService,
                       INavgationService navgationService, IArticleCategoryService articleCategoryService, IActionService actionService, IUserRoleService userRoleService)
 {
     _navgationService           = navgationService;
     _roleService                = roleService;
     _logService                 = logService;
     _systemConfigurationService = systemConfigurationService;
     _articleCategoryService     = articleCategoryService;
     _actionService              = actionService;
     _userRoleService            = userRoleService;
 }
Ejemplo n.º 2
0
 public NavgationController(INavgationService navgationService, ILogService logService, ISystemConfigurationService systemConfigurationService, IActionService actionService)
 {
     _navgationService = navgationService;
     _logService       = logService;
     _actionService    = actionService;
 }
Ejemplo n.º 3
0
 public PermissionController(IUserService userService, INavgationService navgationService)
 {
     _userService      = userService;
     _navgationService = navgationService;
 }