public LugarEntregaDTO ObtenerTallas(int id) { LugarEntregaDTO Lugar = new LugarEntregaDTO(); try { IDataParameter[] parametros = new IDataParameter[1]; parametros[0] = new SqlParameter("Id", SqlDbType.Int); parametros[0].Value = id; DataTable resultado = conexionbd.EjecutarSPResultSet("proObtenerTalla", parametros); if (resultado != null) { foreach (DataRow renglon in resultado.Rows) { Lugar.Id = Convert.ToInt16(renglon[0]); Lugar.Talla = (Double)renglon[1]; Lugar.Activo = (bool)renglon[2]; } } return(Lugar); } catch (Exception) { throw; } }
public LugarEntregaDTO ObtenerBodega(int id) { LugarEntregaDTO Lugar = new LugarEntregaDTO(); try { IDataParameter[] parametros = new IDataParameter[1]; parametros[0] = new SqlParameter("id", SqlDbType.Int); parametros[0].Value = id; DataTable resultado = conexionbd.EjecutarSPResultSet("proObtenerBodega", parametros); if (resultado != null) { foreach (DataRow renglon in resultado.Rows) { Lugar.Id = (short)renglon[0]; Lugar.Nombre = (string)renglon[1]; Lugar.Idusuario = (short)renglon[2]; Lugar.Activo = (bool)renglon[3]; } } return(Lugar); } catch (Exception) { throw; } }
public bool ActualizarLugarentrega(LugarEntregaDTO lugar) { try { IDataParameter[] parametros = new IDataParameter[5]; parametros[0] = new SqlParameter("Id", SqlDbType.SmallInt); parametros[0].Value = lugar.Id; parametros[1] = new SqlParameter("Nombre", SqlDbType.VarChar); parametros[1].Value = lugar.Nombre; parametros[2] = new SqlParameter("Direccion", SqlDbType.VarChar); parametros[2].Value = lugar.Direccion; parametros[3] = new SqlParameter("Telefono", SqlDbType.VarChar); parametros[3].Value = lugar.Telefono; parametros[4] = new SqlParameter("Activo", SqlDbType.Bit); parametros[4].Value = lugar.Activo; return(conexionbd.EjecutarSPSinRetorno("proActualizarLugares", parametros)); } catch (Exception) { throw; } }
//tallas public bool AgregarTallas(LugarEntregaDTO lugar) { try { IDataParameter[] parametros = new IDataParameter[2]; parametros[0] = new SqlParameter("Talla", SqlDbType.Float); parametros[0].Value = lugar.Nombre; parametros[1] = new SqlParameter("activo", SqlDbType.Bit); parametros[1].Value = lugar.Activo; return(conexionbd.EjecutarSPSinRetorno("tallaAgregarTalla", parametros)); } catch (Exception) { throw; } }
// bodegas /// public bool AgregarBodega(LugarEntregaDTO lugar) { try { IDataParameter[] parametros = new IDataParameter[3]; parametros[0] = new SqlParameter("Nombre", SqlDbType.VarChar); parametros[0].Value = lugar.Nombre; parametros[1] = new SqlParameter("IdUsuario", SqlDbType.VarChar); parametros[1].Value = lugar.Idusuario; parametros[2] = new SqlParameter("Estado", SqlDbType.Bit); parametros[2].Value = lugar.Activo; return(conexionbd.EjecutarSPSinRetorno("proAgregarBodega", parametros)); } catch (Exception) { throw; } }
//Procesos de Lavanderia// public bool AgregarProcesoLavanderia(LugarEntregaDTO lugar) { try { IDataParameter[] parametros = new IDataParameter[3]; parametros[0] = new SqlParameter("Nombre", SqlDbType.VarChar); parametros[0].Value = lugar.Nombre; parametros[1] = new SqlParameter("Descripcion", SqlDbType.VarChar); parametros[1].Value = lugar.Direccion; parametros[2] = new SqlParameter("Activo", SqlDbType.Bit); parametros[2].Value = lugar.Activo; return(conexionbd.EjecutarSPSinRetorno("AgregarProcesosLAvanderia", parametros)); } catch (Exception) { throw; } }