public ActionResult Delete(int id) { Funcionario funcionario = service.Show(id); service.Destroy(funcionario); return(Json(new { Status = "OK" })); }