public FamilySearchController(IFamilySearchRepository familySearchRepository,
                               IGoogleRepository googleRepository, IOptions <AppKeys> config)
 {
     _familySearchRepository = familySearchRepository;
     _googleRepository       = googleRepository;
     _config = config;
 }
 public AttractionsProcessor(IGoogleRepository googleRepository, IAttractionsRepository attractionsRepository)
 {
     this.attractionsRepository = attractionsRepository;
     this.googleRepository = googleRepository;
 }
Пример #3
0
 public GoogleService(IGoogleRepository googleRepository)
 {
     _googleRepository = googleRepository;
 }