Esempio n. 1
0
 public WebMenuServiceImpl(IWebMenuRepository webMenuRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IUserOwnedWebMenuViewRepository userOwnedWebMenuViewRepository)
 {
     _webMenuRepository              = webMenuRepository;
     _mapper                         = mapper;
     _authorityUnitOfWork            = authorityUnitOfWork;
     _userOwnedWebMenuViewRepository = userOwnedWebMenuViewRepository;
 }
 public RoleServiceImpl(IRoleRepository roleRepository, IMapper mapper, IAuthorityUnitOfWork authorityUnitOfWork, IRoleWebMenuMapRepository roleWebMenuRepository, IWebMenuRepository webMenuRepository)
 {
     _roleRepository        = roleRepository;
     _mapper                = mapper;
     _authorityUnitOfWork   = authorityUnitOfWork;
     _roleWebMenuRepository = roleWebMenuRepository;
     _webMenuRepository     = webMenuRepository;
 }