示例#1
0
 public WeatherForecastController(ILogger <WeatherForecastController> logger, IWeatherForecastBusiness weatherForecastBusiness)
 {
     _logger = logger;
     _weatherForecastBusiness = weatherForecastBusiness;
 }
 public void SetUp()
 {
     _weatherForecastBusiness = new MockWeatherForecastBusiness();
 }