Example #1
0
 public Cheques_PagarCollection(string CHP_NUM_DOC, int ORDER)
 {
     this._typeLoad    = Cheques_PagarLoadType.LoadByNumDoc;
     this._CHP_NUM_DOC = CHP_NUM_DOC;
     this._ORDER       = ORDER;
     this.Carregar();
 }
Example #2
0
 public Cheques_Pagar(int CHP_CARNE, int CHP_ITEM)
 {
     this._loadType  = Cheques_PagarLoadType.LoadByCarneItem;
     this._CHP_CARNE = CHP_CARNE;
     this._CHP_ITEM  = CHP_ITEM;
     this.Carregar();
 }
Example #3
0
 public Cheques_PagarCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = Cheques_PagarLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Carregar();
     }
 }
Example #4
0
 public Cheques_PagarCollection(DateTime DATA_INICIAL, DateTime DATA_FINAL, Cheques_PagarLoadType typeLoad, int ORDER)
 {
     if (typeLoad == Cheques_PagarLoadType.LoadByEmissao || typeLoad == Cheques_PagarLoadType.LoadByVencimento ||
         typeLoad == Cheques_PagarLoadType.LoadByEfetivacao)
     {
         this._typeLoad     = typeLoad;
         this._DATA_INICIAL = DATA_INICIAL;
         this._DATA_FINAL   = DATA_FINAL;
         this._ORDER        = ORDER;
         this.Carregar();
     }
 }
Example #5
0
 public Cheques_PagarCollection(int CODIGO, Cheques_PagarLoadType typeLoad, int ORDER)
 {
     if (typeLoad == Cheques_PagarLoadType.LoadById)
     {
         this._typeLoad   = typeLoad;
         this._CHP_CODIGO = CODIGO;
         this._ORDER      = ORDER;
         this.Carregar();
     }
     else if (typeLoad == Cheques_PagarLoadType.LoadByCarne)
     {
         this._typeLoad  = typeLoad;
         this._CHP_CARNE = CODIGO;
         this._ORDER     = ORDER;
         this.Carregar();
     }
 }
Example #6
0
 public Cheques_Pagar(int CHP_CODIGO)
 {
     this._loadType   = Cheques_PagarLoadType.LoadById;
     this._CHP_CODIGO = CHP_CODIGO;
     this.Carregar();
 }