예제 #1
0
 public CepCollection(CepLoadType TIPO, string FILTRO, int ORDER)
 {
     this._FILTRO   = FILTRO;
     this._typeLoad = TIPO;
     this._ORDER    = ORDER;
     this.Load();
 }
예제 #2
0
 public CepCollection(int CLID_ID, int ORDER)
 {
     this._typeLoad = CepLoadType.LoadById;
     this._CEP_ID   = CLID_ID;
     this._ORDER    = ORDER;
     this.Load();
 }
예제 #3
0
 public CepCollection(string CEP_LOCAL, int ORDER)
 {
     this._CEP_LOCAL = CEP_LOCAL;
     this._typeLoad  = CepLoadType.LoadByCep;
     this._ORDER     = ORDER;
     this.Load();
 }
예제 #4
0
 public CepCollection(CepLoadType TIPO, string CODCID, string NOME_BAIRRO, string NOME_RUA, int ORDER)
 {
     this._COD_CIDADE  = CODCID;
     this._NOME_BAIRRO = NOME_BAIRRO;
     this._NOME_RUA    = NOME_RUA;
     this._typeLoad    = TIPO;
     this._ORDER       = ORDER;
     this.Load();
 }
예제 #5
0
 public CepCollection(bool isLoad, int ORDER)
 {
     this._typeLoad = CepLoadType.LoadAll;
     this._ORDER    = ORDER;
     if (isLoad)
     {
         this.Load();
     }
 }