public FeaturedController(IOptions <AppSettings> appSettings)
 {
     _appSettings    = appSettings.Value;
     _cardata        = new CarData(_appSettings.CarWaleApiBaseURL);
     _carviewContext = new CarviewContext();
     _imageBaseURL   = _appSettings.CarWaleApiBaseURL + _imageURLPath;
 }
Example #2
0
 public DealerController(IOptions <AppSettings> appsetting)
 {
     _appSettings    = appsetting.Value;
     _cardata        = new CarData(_appSettings.CarWaleApiBaseURL);
     _carviewContext = new CarviewContext();
 }