private void armarParametrosJuegoAgregar(ref SqlCommand comando, Juego j) { SqlParameter sqlParametros = new SqlParameter(); sqlParametros = comando.Parameters.Add("@J_Codigo_Genero", SqlDbType.VarChar); sqlParametros.Value = j.Codigo_Genero; sqlParametros = comando.Parameters.Add("@J_Codigo_PEGI", SqlDbType.VarChar); sqlParametros.Value = j.Codigo_PEGI; sqlParametros = comando.Parameters.Add("@J_Nombre", SqlDbType.VarChar); sqlParametros.Value = j.Nombre; sqlParametros = comando.Parameters.Add("@J_Descripcion", SqlDbType.VarChar); sqlParametros.Value = j.Descripcion; sqlParametros = comando.Parameters.Add("@J_Stock", SqlDbType.Int); sqlParametros.Value = j.Stock; sqlParametros = comando.Parameters.Add("@J_PrecioUnitario", SqlDbType.Decimal); sqlParametros.Value = j.Precio_Unitario; sqlParametros = comando.Parameters.Add("@J_Imagen", SqlDbType.VarChar); sqlParametros.Value = j.Imagen_Url; }
public bool existeJuego(Juego juegoBuscado) { String consulta = "Select * from Juegos where J_Nombre='" + juegoBuscado.Nombre + "'"; return(ds.existe(consulta)); }
public bool estaActivo(Juego juego) { String consulta = "Select * From Juegos where J_Codigo_Juego = '" + juego.Codigo_Juego + "' and J_Estado = '1'"; return(ds.existe(consulta)); }