public SampleTagApplicationServiceBase(ISampleTagService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache)
 {
     base.SetTagNameCache("SampleTag");
     this._validatorAnnotations = new ValidatorAnnotations <SampleTagDto>();
     this._service = service;
     this._user    = user;
 }
 public SampleTagApplicationService(ISampleTagService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache, user)
 {
 }