Exemplo n.º 1
0
 public TravelersController(IRepositoryWrapper repo, IWeatherRequest weatherRequest, ISearchRequest searchRequest, IGoogleServices googleServices, IHikingProject hikingService)
 {
     _repo           = repo;
     _searchRequest  = searchRequest;
     _googleServices = googleServices;
     _hikingService  = hikingService;
     _weatherRequest = weatherRequest;
 }
Exemplo n.º 2
0
 public PhotoLogic(IRepository <User> repository, IRepository <Photo> photos, IGoogleServices googleServices)
 {
     Users          = repository;
     Photos         = photos;
     GoogleServices = googleServices;
 }
 public GoogleController(IConfiguration configuration, IGoogleServices googleServices)
 {
     _googleServices = googleServices;
     _configuration  = configuration;
 }
Exemplo n.º 4
0
 public UserLogic(IRepository <User> repository, IGoogleServices googleServices)
 {
     this.Users     = repository;
     GoogleServices = googleServices;
 }