예제 #1
0
 public CitiesController(ICityService cityService,
                         IWheatherForeCastService wheatherForeCastService,
                         IHubContext <KiosksHub> kiosksHub,
                         IOnlineScreenService onlineScreenService)
 {
     this.onlineScreenService     = onlineScreenService;
     this.cityService             = cityService;
     this.wheatherForeCastService = wheatherForeCastService;
     this.kiosksHub = kiosksHub;
 }
예제 #2
0
 public WheatherForeCastsController(IWheatherForeCastService wheatherForeCastService)
 {
     this.wheatherForeCastService = wheatherForeCastService;
 }