Exemplo n.º 1
0
 public CategoryDataPermissionProvider(
     ICurrentUser currentUser,
     IAuthorizationService authorizationService,
     ICategoryOwnerRepository categoryOwnerRepository)
 {
     _currentUser             = currentUser;
     _authorizationService    = authorizationService;
     _categoryOwnerRepository = categoryOwnerRepository;
 }
 public CategoryOwnerManager(ICategoryOwnerRepository categoryOwnerRepository)
 {
     _categoryOwnerRepository = categoryOwnerRepository;
 }