public override string Mostrar() { StringBuilder sb = new StringBuilder(); sb.AppendLine(base.Mostrar()); sb.AppendLine(IdProducto.ToString()); return(sb.ToString()); }
public bool Update() { try { Dalc.SERVICIO_PRODUCTO servicioProducto = CommonBC.Modelo.SERVICIO_PRODUCTO.First(c => c.ID == Id); servicioProducto.ID_SERVICIO = IdServicio; servicioProducto.PRODUCTO_ID = IdProducto.ToString(); CommonBC.Modelo.SaveChanges(); return(true); } catch (Exception ex) { return(false); } }
public Producto() { Count = ListaProductos.Count; GestionArchivo gs = new GestionArchivo(pathID); gs.CreateFile(); string ID = gs.GetDateOne(); if (ID != null) { IdProducto = Convert.ToInt32(ID); gs.Delete(IdProducto.ToString()); } else { IdProducto = ListaProductos.Count + 1; } }
public bool Create() { Dalc.SERVICIO_PRODUCTO servicioProducto = new Dalc.SERVICIO_PRODUCTO(); try { //servicioProducto.ID = Id; servicioProducto.PRODUCTO_ID = IdProducto.ToString(); servicioProducto.ID_SERVICIO = IdServicio; servicioProducto.CANTIDAD = Cantidad; CommonBC.Modelo.SERVICIO_PRODUCTO.Add(servicioProducto); CommonBC.Modelo.SaveChanges(); return(true); } catch (Exception ex) { CommonBC.Modelo.SERVICIO_PRODUCTO.Remove(servicioProducto); return(false); } }
public override string ToString() { return(IdProducto.ToString()); }
public bool Modificar() { ConexionDb conexion = new ConexionDb(); bool paso = false; paso = conexion.EjecutarDB("Update Productos Set Descripcion = '" + Descripcion + "', Precio = '" + Precio + "', Existencia = '" + Existencia + "' Where IdProducto = " + IdProducto.ToString()); return(paso); }
public string GetProductKey() { return(IdProducto.ToString() + "_" + IdMercado + "_" + IdMoneda + "_" + Plazo + "_" + Rueda); }