public void addTutor(Tutor info)
 {
     dbConnection.Insert(info);
 }
 public void updateTutorInfo(Tutor info)
 {
     dbConnection.Update(info);
 }