Esempio n. 1
0
 public RoleManager(IRoleUnitOfWork roleUnitOfWork, IMapper mapper)
 {
     _roleUnitOfWork = roleUnitOfWork;
     _mapper         = mapper;
 }
 public AuthorizationManager(IRoleUnitOfWork roleUnitOfWork, IMapper mapper)
 {
     _roleUnitOfWork = roleUnitOfWork;
     _mapper         = mapper;
 }
 public AuthorizationsController(IRoleUnitOfWork roleUnitOfWork, IMapper mapper, IAuthorizationService authorizationService)
 {
     _roleUnitOfWork       = roleUnitOfWork;
     _mapper               = mapper;
     _authorizationService = authorizationService;
 }