Example #1
0
 public Student Get(int id)
 {
     try
     {
         if (id < 1)
         {
             return(null);
         }
         return(studentDAL.Get(id));
     }
     catch
     {
         return(null);
     }
 }