// use mock data while testing
 public CountriesController(InterfaceCountries db)
 {
     this.db = db;
 }
 //if no mock data, use live database
 public CountriesController()
 {
     this.db = new EFCountries();
 }