public bool modificarLote(tbLotes lote) { try { db.Entry(lote).State = EntityState.Modified; db.SaveChanges(); return(true); } catch (Exception) { return(false); } }
public bool agregarLote(tbLotes lote) { try { db.tbLotes.Add(lote); db.SaveChanges(); return(true); } catch (Exception) { return(false); } }
public bool decrementarLote(tbLotes lote) { try { var query = (from e in db.tbLotes where e.CodLote == lote.CodLote select e).FirstOrDefault(); query.Cantidad = lote.Cantidad; db.SaveChanges(); return(true); } catch (Exception) { return(false); } }