示例#1
0
 public SampleItemApplicationServiceBase(ISampleItemService service, IUnitOfWork uow, ICache cache, CurrentUser user, IMapper mapper) :
     base(service, uow, cache, mapper, user)
 {
     base.SetTagNameCache("SampleItem");
     this._validatorAnnotations = new ValidatorAnnotations <SampleItemDto>();
     this._service = service;
     this._user    = user;
 }
示例#2
0
 public SampleItemApplicationService(ISampleItemService service, IUnitOfWork uow, ICache cache, CurrentUser user, IMapper mapper) :
     base(service, uow, cache, user, mapper)
 {
 }