Esempio n. 1
0
 public ConvenioCollection(bool isLoad)
 {
     this._typeLoad = ConvenioLoadType.LoadAll;
     if (isLoad)
     {
         this.Load();
     }
 }
Esempio n. 2
0
 public ConvenioCollection(string NOME)
 {
     this._NOME     = NOME;
     this._typeLoad = ConvenioLoadType.LoadByConvenioNome;
     this.Load();
 }
Esempio n. 3
0
 public Convenio(int IDCONVENIO)
 {
     this._loadType   = ConvenioLoadType.LoadById;
     this._IDCONVENIO = IDCONVENIO;
     this.Load();
 }