예제 #1
0
 public CovidController(ICovidBLService covidBLService)
 {
     this._covidBLService = covidBLService;
 }
예제 #2
0
 public EntryPoint(ICovidBLService covidBLService, IConfiguration configuration, ICovidDataRepository covidDataRepository)
 {
     _covidBLService      = covidBLService;
     _configuration       = configuration;
     _covidDataRepository = covidDataRepository;
 }
예제 #3
0
 public Application(ICovidBLService covidBLService)
 {
     _covidBLService = covidBLService;
 }