Exemplo n.º 1
0
 StudentInfo IBLL.IStudent.GetByName(string name)
 {
     if (name == null || name.Equals(String.Empty))
     {
         throw new Exception();
     }
     return(dal.GetByName(name));
 }