Ejemplo n.º 1
0
        public static bool Insertar(CategoriasArticulos ca)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    var p = Buscar(ca.CategoriaId);
                    if (p == null)
                    {
                        db.CategoriasArticulos.Add(ca);
                    }
                    else
                    {
                        db.Entry(ca).State = EntityState.Modified;
                    }
                    db.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }
Ejemplo n.º 2
0
        public static bool Insertar(Articulos a)
        {
            bool resultado = false;

            using (var Conn = new FSVentasCoreDb())
            {
                try
                {
                    var p = Buscar(a.ArticuloId);
                    if (p == null)
                    {
                        Conn.Articulos.Add(a);
                    }
                    else
                    {
                        Conn.Entry(a).State = EntityState.Modified;
                    }
                    Conn.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }
Ejemplo n.º 3
0
        public static bool Insertar(TipoUsuarios a)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    var p = Buscar(a.TipoId);
                    if (p == null)
                    {
                        db.TipoUsuarios.Add(a);
                    }
                    else
                    {
                        db.Entry(a).State = EntityState.Modified;
                    }
                    db.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }
Ejemplo n.º 4
0
        public static bool Guardar(Ventas v)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())

            {
                db.Ventas.Add(v);
                db.SaveChanges();
                resultado = true;
            }

            return(resultado);
        }
Ejemplo n.º 5
0
        public static bool Guardar(Cotizaciones nueva)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())

            {
                db.Cotizaciones.Add(nueva);
                db.SaveChanges();
                resultado = true;
            }

            return(resultado);
        }
Ejemplo n.º 6
0
        public static List <Sector> GetListaId(int Id)
        {
            List <Sector> list = new List <Sector>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    list = db.Sector.Where(p => p.SectorId == Id).ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(list);
        }
Ejemplo n.º 7
0
        public static List <Sector> GetLista()
        {
            var lista = new List <Sector>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    lista = db.Sector.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 8
0
        public static List <VentasDetalles> Listar()
        {
            List <VentasDetalles> listado = null;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    listado = db.VentasDetalles.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(listado);
        }
Ejemplo n.º 9
0
        public static List <VentasDetalles> GetLista()
        {
            var lista = new List <VentasDetalles>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    lista = db.VentasDetalles.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 10
0
        public static VentasDetalles Buscar(int Id)
        {
            var c = new VentasDetalles();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    c = db.VentasDetalles.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(c);
        }
Ejemplo n.º 11
0
        public static List <VentasDetalles> GetListaId(int id)
        {
            List <VentasDetalles> list = new List <VentasDetalles>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    list = db.VentasDetalles.Where(p => p.Id == id).ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(list);
        }
Ejemplo n.º 12
0
        public static Ciudades Buscar(int Id)
        {
            var cid = new Ciudades();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    cid = db.Ciudades.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(cid);
        }
Ejemplo n.º 13
0
        public static Cotizaciones Buscar(int?cotizacionId)
        {
            Cotizaciones cotizacion = null;

            using (var conexion = new FSVentasCoreDb())
            {
                try
                {
                    cotizacion = conexion.Cotizaciones.Find(cotizacionId);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(cotizacion);
        }
Ejemplo n.º 14
0
        public static Ventas Buscar(int ventaId)
        {
            Ventas venta = null;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    venta = db.Ventas.Find(ventaId);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(venta);
        }
Ejemplo n.º 15
0
        public static TipoUsuarios Buscar(int Id)
        {
            var c = new TipoUsuarios();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    c = db.TipoUsuarios.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(c);
        }
Ejemplo n.º 16
0
        public static List <Articulos> GetListaId(int Id)
        {
            List <Articulos> list = new List <Articulos>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    list = db.Articulos.Where(p => p.ArticuloId == Id).ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(list);
        }
        public static List <CotizacionesDetalles> GetLista()
        {
            var lista = new List <CotizacionesDetalles>();

            using (var conexion = new FSVentasCoreDb())
            {
                try
                {
                    lista = conexion.CotizacionesDetalles.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 18
0
        public static Articulos Buscar(int Id)
        {
            var c = new Articulos();

            using (var Conn = new FSVentasCoreDb())
            {
                try
                {
                    c = Conn.Articulos.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(c);
        }
Ejemplo n.º 19
0
        public static List <Articulos> GetLista()
        {
            var lista = new List <Articulos>();

            using (var conexion = new FSVentasCoreDb())
            {
                try
                {
                    lista = conexion.Articulos.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 20
0
        public static MarcasArticulos Buscar(int Id)
        {
            var cid = new MarcasArticulos();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    cid = db.MarcasArticulos.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(cid);
        }
Ejemplo n.º 21
0
        public static List <CategoriasArticulos> GetLista()
        {
            var lista = new List <CategoriasArticulos>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    lista = db.CategoriasArticulos.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 22
0
        public static List <Articulos> ListarArticulos()
        {
            List <Articulos> listado = null;

            using (var conexion = new FSVentasCoreDb())
            {
                try
                {
                    listado = conexion.Articulos.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(listado);
        }
        public static CotizacionesDetalles Buscar(int Id)
        {
            var c = new CotizacionesDetalles();

            using (var Conn = new FSVentasCoreDb())
            {
                try
                {
                    c = Conn.CotizacionesDetalles.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(c);
        }
Ejemplo n.º 24
0
        public static CategoriasArticulos Buscar(int Id)
        {
            var ca = new CategoriasArticulos();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    ca = db.CategoriasArticulos.Find(Id);
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(ca);
        }
Ejemplo n.º 25
0
        public static List <CategoriasArticulos> ListarArticulos()
        {
            List <CategoriasArticulos> lista = null;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    lista = db.CategoriasArticulos.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
Ejemplo n.º 26
0
        public static List <TipoUsuarios> GetLista()
        {
            var lista = new List <TipoUsuarios>();

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    lista = db.TipoUsuarios.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(lista);
        }
        public static List <CotizacionesDetalles> Listar()
        {
            List <CotizacionesDetalles> listado = null;

            using (var conexion = new FSVentasCoreDb())
            {
                try
                {
                    listado = conexion.CotizacionesDetalles.ToList();
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(listado);
        }
Ejemplo n.º 28
0
        public static bool Eliminar(Articulos nuevo)
        {
            bool resultado = false;

            using (var Conn = new FSVentasCoreDb())
            {
                try
                {
                    Conn.Entry(nuevo).State = EntityState.Deleted;
                    Conn.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }
Ejemplo n.º 29
0
        public static bool Eliminar(CategoriasArticulos ca)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    db.Entry(ca).State = EntityState.Deleted;
                    db.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }
Ejemplo n.º 30
0
        public static bool Eliminar(TipoUsuarios t)
        {
            bool resultado = false;

            using (var db = new FSVentasCoreDb())
            {
                try
                {
                    db.Entry(t).State = EntityState.Deleted;
                    db.SaveChanges();
                    resultado = true;
                }
                catch (Exception)
                {
                    throw;
                }
            }
            return(resultado);
        }