コード例 #1
0
 public LocationInformationService(CafeResultService cars, WeatherResultService wers, CityResultService cirs, SqlDbContext ctx)
 {
     cafeResultService    = cars;
     weatherResultService = wers;
     cityResultService    = cirs;
     // _locationInformations = Utils.XML.Load<List<LocationInformation>>(@"locationInformation.xml");
     _context = ctx;
 }
コード例 #2
0
 public CityResultService(SqlDbContext ctx)
 {
     _context = ctx;
     // _cityResults = Utils.XML.Load<List<CityResult>>(@"cityResult.xml");
 }