public static List <Struct_AlertaProducto> GetAllProducts() { DataTable dt = D_AlertaStock.RecuperarProductosConAlerta(); if (dt != null) { List <Struct_AlertaProducto> lista = new List <Struct_AlertaProducto>(); foreach (DataRow dr in dt.Rows) { Struct_AlertaProducto prod = new Struct_AlertaProducto(dr); if (Struct_Producto.GetById(prod.IdProducto) != null) { lista.Add(prod); } } if (lista.Count > 0) { return(lista); } else { return(null); } } else { return(null); } }
public Struct_Producto getProducto() { Struct_Producto p = Struct_Producto.GetById(IdProducto); if (p != null) { return(p); } else { return(null); } }