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); }
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); }
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); }
public static bool Guardar(Ventas v) { bool resultado = false; using (var db = new FSVentasCoreDb()) { db.Ventas.Add(v); db.SaveChanges(); resultado = true; } return(resultado); }
public static bool Guardar(Cotizaciones nueva) { bool resultado = false; using (var db = new FSVentasCoreDb()) { db.Cotizaciones.Add(nueva); db.SaveChanges(); resultado = true; } return(resultado); }
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); }
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); }
public static List <VentasDetalles> Listar() { List <VentasDetalles> listado = null; using (var db = new FSVentasCoreDb()) { try { listado = db.VentasDetalles.ToList(); } catch (Exception) { throw; } } return(listado); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
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); }
public static List <CategoriasArticulos> ListarArticulos() { List <CategoriasArticulos> lista = null; using (var db = new FSVentasCoreDb()) { try { lista = db.CategoriasArticulos.ToList(); } catch (Exception) { throw; } } return(lista); }
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); }
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); }
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); }
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); }