public void Copy(BolaoCriterioPontosTimes entry)
        {
            _bolao    = entry._bolao;
            _multiplo = entry._multiplo;
            _time     = entry._time;



            base.Copy(entry);
        }
Exemplo n.º 2
0
        public void Copy(Pagamento entry)
        {
            _bolao         = entry._bolao;
            _dataPagamento = entry._dataPagamento;
            _descricao     = entry._descricao;
            _tipoPagamento = entry._tipoPagamento;
            _userName      = entry._userName;
            _valor         = entry._valor;


            base.Copy(entry);
        }
Exemplo n.º 3
0
        public void Copy(BolaoCriterioPontos entry)
        {
            _bolao        = entry._bolao;
            _criterioID   = entry._criterioID;
            _descricao    = entry._descricao;
            _pontos       = entry._pontos;
            _multiploTime = entry._multiploTime;
            _time         = entry._time;


            base.Copy(entry);
        }
Exemplo n.º 4
0
        public void Copy(ApostaExtra entry)
        {
            _bolao            = entry._bolao;
            _dataValidacao    = entry._dataValidacao;
            _descricao        = entry._descricao;
            _isValido         = entry._isValido;
            _nomeTimeValidado = entry._nomeTimeValidado;
            _posicao          = entry._posicao;
            _titulo           = entry._titulo;
            _totalPontos      = entry._totalPontos;
            _validadoBy       = entry._validadoBy;

            base.Copy(entry);
        }
Exemplo n.º 5
0
        public void Copy(BolaoRequest entry)
        {
            _answeredBy      = entry._answeredBy;
            _answeredDate    = entry._answeredDate;
            _bolao           = entry._bolao;
            _descricao       = entry._descricao;
            _owner           = entry._owner;
            _requestedBy     = entry._requestedBy;
            _requestedDate   = entry._requestedDate;
            _requestID       = entry._requestID;
            _statusRequestID = entry._statusRequestID;


            base.Copy(entry);
        }
Exemplo n.º 6
0
 public void CopyAposta(Model.Boloes.JogoUsuario jogoUsuario)
 {
     base.Copy(jogoUsuario);
     this._apostaPontos = jogoUsuario._apostaPontos;
     this._apostaTime1  = jogoUsuario._apostaTime1;
     this._apostaTime2  = jogoUsuario._apostaTime2;
     this._automatico   = jogoUsuario._automatico;
     this._bolao        = jogoUsuario._bolao;
     this._dataAposta   = jogoUsuario._dataAposta;
     this._userName     = jogoUsuario._userName;
     this._valido       = jogoUsuario._valido;
     this._timeResult1  = jogoUsuario._timeResult1;
     this._timeResult2  = jogoUsuario._timeResult2;
     this._ganhador     = jogoUsuario._ganhador;
 }
Exemplo n.º 7
0
 public Pagamento(string nomeBolao, string userName, DateTime dataPagamento)
 {
     _bolao         = new Bolao(nomeBolao);
     _userName      = userName;
     _dataPagamento = dataPagamento;
 }
Exemplo n.º 8
0
 public BolaoRequest(int requestID, string nomeBolao)
 {
     _requestID = requestID;
     _bolao     = new Bolao(nomeBolao);
 }
Exemplo n.º 9
0
 public Regra(int regraID, string nomeBolao)
 {
     _regraID = regraID;
     _bolao   = new Bolao(nomeBolao);
 }
Exemplo n.º 10
0
 public ApostaExtra(int posicao, string bolao)
 {
     _posicao = posicao;
     _bolao   = new Bolao(bolao);
 }
Exemplo n.º 11
0
 public BolaoCriterioPontos(string nomeBolao, CriteriosID criterioID)
 {
     _bolao      = new Bolao(nomeBolao);
     _criterioID = criterioID;
 }
Exemplo n.º 12
0
 public BolaoCriterioPontosTimes(string nomeBolao, string nomeTime)
 {
     _bolao = new Bolao(nomeBolao);
     _time  = new BolaoNet.Model.DadosBasicos.Time(nomeTime);
 }