Exemple #1
0
 public frmPractice(User Currentuser)
 {
     InitializeComponent();
     user = Currentuser;
     _WordPoolController       = new WordPoolController();
     _wordPoolDetailController = new WordPoolDetailController();
     _practiceController       = new PracticeController();
 }
Exemple #2
0
 public frmMyWordPools(User currentUser)
 {
     InitializeComponent();
     user = currentUser;
     _wordPoolController       = new WordPoolController();
     _wordPoolDetailController = new WordPoolDetailController();
     _dictionaryController     = new DictionaryController();
 }
 public frmAddWordToPool(User currentUser, WordPool currentPool)
 {
     InitializeComponent();
     _dictionaryController     = new DictionaryController();
     _wordPoolController       = new WordPoolController();
     _wordPoolDetailController = new WordPoolDetailController();
     user     = currentUser;
     wordPool = currentPool;
 }
        public frmUserPractice(User currentUser, WordPool CurrentWordPool, Practice currentPractice)
        {
            InitializeComponent();
            this.ControlBox           = false;
            _wordPoolDetailController = new WordPoolDetailController();
            _practiceDetailController = new PracticeDetailController();
            _practiceController       = new PracticeController();

            user           = currentUser;
            practice       = currentPractice;
            wordPool       = CurrentWordPool;
            alreadyIndexed = new List <int>();
        }