public static bool TxtReport() { Importado imp = new Importado(); Fabricado fab = new Fabricado(); TxtHandler report = new TxtHandler(); return(report.TxtProductos(imp.TraerTodo(), fab.TraerTodo())); }
public static bool CrearProductoImportado(string nombreProd, string descProd, double costoProd, double precioSugeridoProd, string origenImportado, int cantMinImport) { Importado imp = new Importado() { Nombre = nombreProd, Desc = descProd, Costo = costoProd, PrecioSugerido = precioSugeridoProd, Descontinuado = false, Origen = origenImportado, CantImportacion = cantMinImport }; return(imp.Crear()); }
public static bool ExisteProducto(string nombreProd) { bool result = false; Fabricado fab = new Fabricado() { Nombre = nombreProd }; Importado imp = new Importado() { Nombre = nombreProd }; if (fab.BuscarPorNombre() != null || imp.BuscarPorNombre() != null) { result = true; } return(result); }
public static List <Importado> TraerTodoProdImportado() { Importado imp = new Importado(); return(imp.TraerTodo()); }