示例#1
0
 public SurveyResponseService(
     ISurveyResponseRepository surveyResponseRepository,
     IMapper mapper)
 {
     _surveyResponseRepository = surveyResponseRepository;
     _mapper = mapper;
 }
示例#2
0
 public SurveyController(IClientSideStorageService clientStorage, IDateTimeService dateTime, ILogger <SurveyController> logger, IPostcodeLookupService postcodeLookup, ISurveyResponseRepository surveyResponseRepository)
 {
     _clientStorage            = clientStorage;
     _dateTime                 = dateTime;
     _logger                   = logger;
     _postcodeLookup           = postcodeLookup;
     _surveyResponseRepository = surveyResponseRepository;
 }
示例#3
0
 public SurveyResponseUnitOfWork(
     ISurveyResponseRepository repository,
     IEventSender eventSender,
     IDistributedCache cache,
     DistributedCacheEntryOptions options,
     JsonSerializerSettings serializerSettings)
     : base(repository, eventSender, cache, options, serializerSettings)
 {
 }
 public SurveyResponse(ISurveyResponseRepository _surveyResponseRepository)
 {
     surveyResponseRepository = _surveyResponseRepository;
 }
 public QrCodeController(IUserDataRepository userDataRepo, ISurveyResponseRepository surveyResponseRepo)
 {
     _userDataRepo       = userDataRepo;
     _surveyResponseRepo = surveyResponseRepo;
 }
 public GetCurrentResponceAttribute(IClientSideStorageService clientStorage, ISurveyResponseRepository surveyResponseRepository)
 {
     _clientStorage            = clientStorage;
     _surveyResponseRepository = surveyResponseRepository;
     Order = 1;
 }
 public QrCodeController(IUserDataRepository userDataRepo, ISurveyResponseRepository surveyResponseRepo)
 {
     _userDataRepo = userDataRepo;
     _surveyResponseRepo = surveyResponseRepo;
 }
示例#8
0
 public SurveyResponseService(ISurveyResponseRepository surveyResponseRepository)
 {
     _surveyResponseWrapper = new RepositoryWrapper <ISurveyResponseRepository>(surveyResponseRepository);
 }
示例#9
0
 public SurveyResponseController(ISurveyResponseRepository isurvyeyAnswerepository)
 {
     _isurveyAnswerRepository = isurvyeyAnswerepository;
 }