コード例 #1
0
 public MetroController
 (
     ILogger <MetroController> logger,
     IDTF IDTF,
     IMetroService IMetroService
 )
 {
     this._logger        = logger;
     this._IDTF          = IDTF;
     this._IMetroService = IMetroService;
 }
コード例 #2
0
 public WeatherController
 (
     ILogger <WeatherController> logger,
     IDTF IDTF,
     IWeatherDataService IWeatherDataService
 )
 {
     this._logger = logger;
     this._IDTF   = IDTF;
     this._IWeatherDataService = IWeatherDataService;
 }
コード例 #3
0
 public WeatherDataService
 (
     IDTF IDTF,
     IResult IResult,
     ICodeAreaRepository ICodeAreaRepository,
     ICodeLocationRepository ICodeLocationRepository,
     IWeatherMainRepository IWeatherMainRepository,
     IApiManagers IApiManagers,
     IConfiguration Configuration
 )
 {
     this._IDTF                    = IDTF;
     this._IResult                 = IResult;
     this._ICodeAreaRepository     = ICodeAreaRepository;
     this._ICodeLocationRepository = ICodeLocationRepository;
     this._IWeatherMainRepository  = IWeatherMainRepository;
     this._IApiManagers            = IApiManagers;
     this._Configuration           = Configuration;
 }
コード例 #4
0
 public ApiManagers(IDTF IDTF)
 {
     this._IDTF = IDTF;
 }