예제 #1
0
파일: busVenta.cs 프로젝트: dambert/Repo
        public void Actualizar(VENTA P)
        {
            try
            {
                new DatVenta().Actualizar(P);
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
예제 #2
0
파일: busVenta.cs 프로젝트: dambert/Repo
        public int Insertar(VENTA P)
        {
            try
            {
                return new DatVenta().Insertar(P);
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
예제 #3
0
파일: DatVenta.cs 프로젝트: dambert/Repo
        public int Insertar(VENTA P)
        {
            try
            {
                ContextoDB ct = new ContextoDB();
                ct.VENTA.Add(P);
                ct.SaveChanges();
                return P.CVenta;
            }
            catch (Exception ex)
            {

                throw ex;
            }

        }
예제 #4
0
파일: DatVenta.cs 프로젝트: dambert/Repo
        public void Actualizar(VENTA P)
        {
            try
            {
                ContextoDB ct = new ContextoDB();
                VENTA VENTA = ct.VENTA.Where(x => x.CVenta == P.CVenta).SingleOrDefault();

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

                throw ex;
            }

        }