public int DeleteStudent(Student student)
 {
     try
     {
         return(student.Delete());
     }
     catch (Exception ex)
     {
         throw new FaultException(ex.Message);
     }
 }
Esempio n. 2
0
 public void DeleteStudent(string id)
 {
     Student.Delete(Convert.ToInt32(id));
 }