コード例 #1
0
 public FornecedorCollection(FornecedorLoadType TIPO, string FOR_NOME, int ORDER)
 {
     this._FOR_NOME = FOR_NOME;
     this._typeLoad = TIPO;
     this._ORDER    = ORDER;
     this.Carregar();
 }
コード例 #2
0
 public FornecedorCollection(int FOR_CODIGO, int ORDER)
 {
     this._typeLoad   = FornecedorLoadType.LoadById;
     this._FOR_CODIGO = FOR_CODIGO;
     this._ORDER      = ORDER;
     this.Carregar();
 }
コード例 #3
0
 public FornecedorCollection(string FOR_NOME, int ORDER)
 {
     this._FOR_NOME = FOR_NOME;
     this._typeLoad = FornecedorLoadType.LoadByNome;
     this._ORDER    = ORDER;
     this.Carregar();
 }
コード例 #4
0
 public FornecedorCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = FornecedorLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Carregar();
     }
 }