public IHttpActionResult Delete(TimeModel model)
 {
     try
     {
         TimeDal timeDal = new TimeDal();
         timeDal.Delete(model);
         return(Ok());
     }
     catch (Exception ex)
     {
         return(BadRequest(ex.Message));
     }
 }
        public string Excluir(int id)
        {
            try
            {
                TimeDal d = new TimeDal();
                Time    t = d.FindById(id);

                if (t != null)
                {
                    d.Delete(t);
                    return("Time excluído.");
                }
                else
                {
                    return("Time não encontrado.");
                }
            }
            catch (Exception e)
            {
                return(e.Message);
            }
        }
        public JsonResult Excluir(TimeModelEdicao model)
        {
            try
            {
                TimeDal d = new TimeDal();
                Time t = d.FindById(model.IdTime);

                if (t != null)
                {
                    d.Delete(t);

                    return Json("Time excluído, atualizando...");
                }
                else
                {
                    return Json("Time não encontrado.");
                }
            }
            catch (Exception e)
            {
                return Json(e.Message);
            }
        }
        public ActionResult Excluir(int id)
        {
            try
            {
                TimeDal d = new TimeDal();
                d.Delete(d.FindById(id));

                ViewBag.Mensagem = "Time excluído com sucesso.";
            }
            catch (Exception e)
            {
                ViewBag.Mensagem = e.Message;
            }

            return RedirectToAction("Consulta");
        }