public frmPractice(User Currentuser) { InitializeComponent(); user = Currentuser; _WordPoolController = new WordPoolController(); _wordPoolDetailController = new WordPoolDetailController(); _practiceController = new PracticeController(); }
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>(); }