public TeacherDictantModel(Dictant dictant)
 {
     currentTeacher = new TeacherDAO();
     currentDictant = dictant;
     if (currentDictant != null)
     {
         currentTeacher.getPositionAndAnswer(currentDictant.ID, out positions, out answers);
     }
 }