public SampleTypesController(ISampleTypeService sampleTypeService,
                              IValidator <CreateSampleTypeRequestDto> createSampleTypeRequestDtoValidator,
                              IMapper mapper) : base(mapper)
 {
     _sampleTypeService = sampleTypeService;
     _createSampleTypeRequestDtoValidator = createSampleTypeRequestDtoValidator;
 }
 public SampleTypeApplicationServiceBase(ISampleTypeService service, IUnitOfWork uow, ICache cache, CurrentUser user, IMapper mapper) :
     base(service, uow, cache, mapper)
 {
     base.SetTagNameCache("SampleType");
     this._validatorAnnotations = new ValidatorAnnotations <SampleTypeDto>();
     this._service = service;
     this._user    = user;
 }
 public SampleTypeApplicationService(ISampleTypeService service, IUnitOfWork uow, ICache cache, CurrentUser user, IMapper mapper) :
     base(service, uow, cache, user, mapper)
 {
 }