public JsonResult Excluir(Prato prato) { try { var retorno = _PratoApplication.Delete(prato); return(Retornar(prato.IdRestaurante)); } catch (Exception) { throw; } }
public List <PratoViewModel> Delete(int id) { _app.Delete(id); return(_app.GetAll()); }