Esempio n. 1
0
 public GreetingService(
     IReadableDateTimeService readableDateTimeService, INewsService newsService, ISurfService surfService, IWeatherService weatherService)
 {
     _weatherService          = weatherService;
     _surfService             = surfService;
     _readableDateTimeService = readableDateTimeService;
     _newsService             = newsService;
 }
Esempio n. 2
0
 public SurfForecastController(ISurfService surfService)
 {
     _surfService = surfService;
 }