Пример #1
0
 public int InsertStudent(int? id, string studentData, int userid, string hostCode)
 {
     DAStudents pDAL = new DAStudents();
     try
     {
         return pDAL.InsertStudent(id, studentData, userid, hostCode);
     }
     catch
     {
         throw;
     }
     finally
     {
         pDAL = null;
     }
 }