public NivelAcessoApplicationServiceBase(INivelAcessoService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache)
 {
     base.SetTagNameCache("NivelAcesso");
     this._validatorAnnotations = new ValidatorAnnotations <NivelAcessoDto>();
     this._service = service;
     this._user    = user;
 }
Exemplo n.º 2
0
 public NivelAcessoApplicationService(INivelAcessoService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache, user)
 {
 }
 public NivelAcessoApplicationService(INivelAcessoService service, IUnitOfWork uow, ICache cache) :
     base(service, uow, cache)
 {
 }