コード例 #1
0
ファイル: Pagamento.cs プロジェクト: Thoris/bolaonet2014
        public Pagamento(string currentLogin, Dao.Boloes.IDaoPagamento daoBase)
        {
            if (daoBase == null)
            {
                throw new ArgumentNullException("daoBase");
            }

            _currentLogin = currentLogin;
            _daoBase      = daoBase;
        }
コード例 #2
0
ファイル: Pagamento.cs プロジェクト: Thoris/bolaonet2014
 public Pagamento(string currentLogin)
 {
     _currentLogin = currentLogin;
     _daoBase      = new Dao.Boloes.SQLSupport.Pagamento();
 }