public MenuActionService(IMenuActionRepository menuActionRepository, ISystemActionService systemActionService, ISystemControllerService systemControllerService, IMenuService menuService, IMapper mapper)
 {
     _menuActionRepository    = menuActionRepository;
     _systemActionService     = systemActionService;
     _systemControllerService = systemControllerService;
     _menuService             = menuService;
     _mapper = mapper;
 }
Example #2
0
 public ConfigController(IMenuRepository menu,
                         IRoleMenuRepository rolemenu,
                         IRoleRepository role,
                         IUserRepository user,
                         IUserRoleRepository userrole,
                         IEventLogRepository eventlog,
                         IGuestBookRepository guestbook,
                         IMenuActionRepository menuaction,
                         IRoleActionRepository roleaction)
 {
     MenuRepository       = menu;
     RoleMenuRepository   = rolemenu;
     RoleRepository       = role;
     UserRepository       = user;
     UserRoleRepository   = userrole;
     LogRepository        = eventlog;
     GuestBookRepository  = guestbook;
     MenuActionRepository = menuaction;
     RoleActionRepository = roleaction;
 }
 public MenuRepository(IRoleMenuRepository roleMenuRepository, IMenuActionRepository menuActionRepository)
 {
     _roleMenuRepository   = roleMenuRepository;
     _menuActionRepository = menuActionRepository;
 }
Example #4
0
 public SystemActionRepository(IMenuActionRepository menuActionRepository)
 {
     _menuActionRepository = menuActionRepository;
 }