public JsonResult Delete(TestDataModel param) { this.InicializaDados(); bool flag = false; flag = repo.Delete(param); this.Persists(this.repo); if (!flag) { ret.SetFailStatus("Não foi possível remover."); } else { this.Persists(this.repo); } return(Json(ret)); }