IValidadorLote.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 using sage.ew.interficies;
7 
8 namespace sage.ew.lote
9 {
10  internal interface IValidadorLote
11  {
12 
13  bool _Asignar_Articulos_Lote(lote.Clases.Lote toLote, IDocumentLinea toLinea);
14 
15  }
16 }
Interficie mínima de las líneas (Mantener lo mas reducida posible)
Definition: IDocument.cs:186