Пример #1
0
 /// <summary>
 /// Изменинить состояние посещения для студента
 /// </summary>
 /// <param name="student"></param>
 public void ChangeStudentState(StudentAttendanceModel student)
 {
     AttendanceProvider.ChangeState(
         student.Student.Id,
         Schedule.Id,
         Date,
         student.State);
 }
Пример #2
0
        private void VisitBox_CheckedChanged(object sender, EventArgs e)
        {
            CheckBox checkBox            = sender as CheckBox;
            StudentAttendanceModel model = this.Tag as StudentAttendanceModel;

            model.State = checkBox.Checked ? Models.AttendanceLogState.visited : Models.AttendanceLogState.skiped;

            StateChanged?.Invoke(model, EventArgs.Empty);
        }
Пример #3
0
 /// <summary>
 /// Изменинить состояние посещения для студента
 /// </summary>
 /// <param name="student"></param>
 public void ChangeStudentState(StudentAttendanceModel student)
 {
     Model.ChangeStudentState(student);
 }
Пример #4
0
 public void SetStudentAttendance(StudentAttendanceModel model)
 {
     studentName.Text = $"{model.Student.LastName} {model.Student.FirstName} {model.Student.Patronymic}";
     visitBox.Checked = model.State == Models.AttendanceLogState.visited;
 }