public CountriesController(icountryRepository db)
 {
     this.db = db;
 }
 public CountriesController()
 {
     this.db = new EfCountryRepository();
 }