public void AttendStudent(Student student, bool presence, StudingTheSubject pair)
 {
     try
     {
         student.Attend(presence, pair);
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.Message);
     }
 }