Ejemplo n.º 1
0
 public ClienteCollection(ClienteLoadType TIPO, string CLI_NOME, int ORDER)
 {
     this._CLI_NOME = CLI_NOME;
     this._typeLoad = TIPO;
     this._ORDER    = ORDER;
     this.Load();
 }
Ejemplo n.º 2
0
 public ClienteCollection(int CLI_CODIGO, int ORDER)
 {
     this._typeLoad   = ClienteLoadType.LoadById;
     this._CLI_CODIGO = CLI_CODIGO;
     this._ORDER      = ORDER;
     this.Load();
 }
Ejemplo n.º 3
0
 public ClienteCollection(string CLI_NOME, int ORDER)
 {
     this._CLI_NOME = CLI_NOME;
     this._typeLoad = ClienteLoadType.LoadByNome;
     this._ORDER    = ORDER;
     this.Load();
 }
Ejemplo n.º 4
0
 public ClienteCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = ClienteLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Load();
     }
 }