示例#1
0
文件: Lote.cs 项目: pjeconde/eFact
 public static void ConsultarXEstado(out List<eFact_Entidades.Lote> Lotes, string ListaEstados, CedEntidades.Sesion Sesion)
 {
     List<eFact_Entidades.Lote> lotes = new List<eFact_Entidades.Lote>();
     eFact_DB.Lote l = new eFact_DB.Lote(Sesion);
     l.ConsultarXEstado(out lotes, ListaEstados);
     Lotes = lotes;
 }