public async Task<Country> PostCountry(Country country)
 {
     return await repository.insert(country);
 }
 public async Task<Country> PutCountry(short id, Country country)
 {
     return await repository.update(id, country);
 }