Пример #1
0
        public void Actualizar(EVENTO P)
        {
            try
            {
                new DatEvento().Actualizar(P);
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
Пример #2
0
        public int Insertar(EVENTO P)
        {
            try
            {
                return new DatEvento().Insertar(P);
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
Пример #3
0
        public int Insertar(EVENTO P)
        {
            try
            {
                ContextoDB ct = new ContextoDB();
                ct.EVENTO.Add(P);
                ct.SaveChanges();
                return P.CEvento;
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
Пример #4
0
        public void Actualizar(EVENTO P)
        {
            try
            {
                ContextoDB ct = new ContextoDB();
                EVENTO EVENTO = ct.EVENTO.Where(x => x.CEvento == P.CEvento).SingleOrDefault();

                if (EVENTO != null)
                {
                    ct.Entry(EVENTO).CurrentValues.SetValues(P);
                    ct.SaveChanges();
                }
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }