public TypeUserApplicationServiceBase(ITypeUserService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache)
 {
     base.SetTagNameCache("TypeUser");
     this._validatorAnnotations = new ValidatorAnnotations <TypeUserDto>();
     this._service = service;
     this._user    = user;
 }
 public TypeUserApplicationService(ITypeUserService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache, user)
 {
 }