Example #1
0
 public OperacaoCollection(bool isLoad)
 {
     if (isLoad)
     {
         this._TIPO = OperacaoLoadType.LoadAll;
         this.Carregar();
     }
 }
Example #2
0
 public OperacaoCollection(OperacaoLoadType TIPO, int OF_FUNCIONARIO)
 {
     this._OF_FUNCIONARIO = OF_FUNCIONARIO;
     this._TIPO           = TIPO;
     this.Carregar();
 }
Example #3
0
 public OperacaoCollection(OperacaoLoadType TIPO, int IDUSUARIO)
 {
     this._IDUSUARIO = IDUSUARIO;
     this._TIPO      = TIPO;
     this.Carregar();
 }