public object Delete(Pais pais) { string msgError = ""; bool result = repository.Remove(pais, ref msgError); object json = new { success = result, message = msgError }; return(json); }
public void Delete(string id) { _repo.Remove(id); }