Ejemplo n.º 1
0
        public ActionResult Delete(int id)
        {
            regranegocio_Time regranegocio_Time = null;
            entity_Time       objTime           = null;

            try
            {
                regranegocio_Time = new regranegocio_Time();
                objTime           = new entity_Time();

                objTime.TimeID = id;

                if (regranegocio_Time.Deletar(objTime))
                {
                    ViewBag.Mensagem = "Time Excluido com Sucesso.";
                }


                return(RedirectToAction("Index"));
            }
            catch (Exception)
            {
                return(View("Index"));
            }
        }
Ejemplo n.º 2
0
        public ActionResult Update(int id)
        {
            regranegocio_Time regranegocio_Time = null;

            try
            {
                regranegocio_Time = new regranegocio_Time();
                var time = regranegocio_Time.Pesquisar().Find(t => t.TimeID == id);
                return(View(time));
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 3
0
        public ActionResult Update(int id, entity_Time objTime)
        {
            regranegocio_Time regranegocio_Time = null;

            try
            {
                regranegocio_Time = new regranegocio_Time();

                regranegocio_Time.Atualizar(objTime);

                return(RedirectToAction("Index"));
            }
            catch (Exception)
            {
                return(View("Index"));
            }
        }
Ejemplo n.º 4
0
        public ActionResult Index()
        {
            regranegocio_Time regranegocio_Time = null;

            try
            {
                regranegocio_Time = new regranegocio_Time();

                var lstTimes = regranegocio_Time.Pesquisar();

                ModelState.Clear();

                return(View(lstTimes));
            }
            catch (Exception)
            {
                throw;
            }
        }
Ejemplo n.º 5
0
        public ActionResult Create(entity_Time objTime)
        {
            regranegocio_Time regranegocio_Time = null;

            try
            {
                if (ModelState.IsValid)
                {
                    regranegocio_Time = new regranegocio_Time();


                    if (regranegocio_Time.Adicionar(objTime))
                    {
                        ViewBag.Mensagem = "Time Cadastrado com Sucesso.";
                    }
                }

                return(View());
            }
            catch (Exception)
            {
                return(View("Index"));
            }
        }