Exemplo n.º 1
0
 public Contas_PagarCollection(string FOR_NOME, int ORDER)
 {
     this._typeLoad = Contas_PagarLoadType.LoadByFornecedor;
     this._FOR_NOME = FOR_NOME;
     this._ORDER    = ORDER;
     this.Carregar();
 }
Exemplo n.º 2
0
 public Contas_PagarCollection(DateTime DATA_INICIAL, DateTime DATA_FINAL, int ORDER)
 {
     this._typeLoad     = Contas_PagarLoadType.LoadByData;
     this._DATA_INICIAL = DATA_INICIAL;
     this._DATA_FINAL   = DATA_FINAL;
     this._ORDER        = ORDER;
     this.Carregar();
 }
Exemplo n.º 3
0
 public Contas_PagarCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = Contas_PagarLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Carregar();
     }
 }
Exemplo n.º 4
0
 public Contas_PagarCollection(int CODIGO, Contas_PagarLoadType typeLoad, int ORDER)
 {
     if (typeLoad == Contas_PagarLoadType.LoadById)
     {
         this._typeLoad   = typeLoad;
         this._CAP_CODIGO = CODIGO;
         this._ORDER      = ORDER;
         this.Carregar();
     }
     else if (typeLoad == Contas_PagarLoadType.LoadByCompra)
     {
         this._typeLoad   = typeLoad;
         this._CAP_COMPRA = CODIGO;
         this._ORDER      = ORDER;
         this.Carregar();
     }
 }