Пример #1
0
 public SearchController(IMapper mapper, IHttpCacheService cache, ISymptomsService symptoms, IDiseasesService diseases)
 {
     this.Mapper = mapper;
     this.Cache = cache;
     this.Symptoms = symptoms;
     this.Diseases = diseases;
 }
Пример #2
0
 public MatchHub(IDirectoryService directoryService,
                 IHttpCacheService cacheService,
                 IParseService parseService)
 {
     this.directoryService = directoryService;
     this.cacheService     = cacheService;
     this.parseService     = parseService;
 }
Пример #3
0
 public SymptomsService(
     IMapper mapper,
     IHttpCacheService cache,
     IRepository<Symptom> symptoms)
 {
     this.Mapper = mapper;
     this.Cache = cache;
     this.Symptoms = symptoms;
 }
Пример #4
0
 public HomeController(IDirectoryService directoryService, IHttpCacheService cacheService)
 {
     this.directoryService = directoryService;
     this.cacheService     = cacheService;
 }