public void UpdateGroupByGroupId(long seminarGroupId, int grade)
 {
     try
     {
         _iGradeDao.UpdateGroupByGroupId(seminarGroupId, grade);
     }
     catch (GroupNotFoundException gre)
     {
         throw gre;
     }
     catch (Exception e)
     {
         throw e;
     }
 }