Ejemplo n.º 1
0
 public IHttpActionResult Delete(Country country)
 {
     if (country != null)
     {
         countryService.DeleteCouuntries(country);
         return(Ok("Country Deleted"));
     }
     else
     {
         return(NotFound());
     }
 }