public OpportunityModel(
     IConfiguration config,
     IOpportunityDataAccess opportunityDataAccess,
     IEmailService emailService,
     IGeocodingService geolocationService,
     ILogoStorage logoStorage
     )
 {
     GoogleMapsApiKey      = config["GoogleMapsApiKey"];
     OpportunityDataAccess = opportunityDataAccess;
     EmailService          = emailService;
     GeolocationService    = geolocationService;
     LogoStorage           = logoStorage;
 }
Example #2
0
 public LogoController(ILogoStorage logoStorageService)
 {
     _logoStorageService = logoStorageService;
 }