public SampleDetailApplicationServiceBase(ISampleDetailService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache)
 {
     base.SetTagNameCache("SampleDetail");
     this._validatorAnnotations = new ValidatorAnnotations <SampleDetailDto>();
     this._service = service;
     this._user    = user;
 }
Пример #2
0
 public SampleDetailApplicationService(ISampleDetailService service, IUnitOfWork uow, ICache cache, CurrentUser user) :
     base(service, uow, cache, user)
 {
 }