public IEnumerable <USP_Student_Select_Result> Get(string StudentName, string StudentEmail)
 {
     if (StudentName == null)
     {
         StudentName = "";
     }
     if (StudentEmail == null)
     {
         StudentEmail = "";
     }
     return(objapi.USP_Student_Select(StudentName, StudentEmail).AsEnumerable());
 }
Beispiel #2
0
 public IEnumerable <USP_Student_Select_Result> Get(string Name, string Medicare)
 {
     if (Name == null)
     {
         Name = "";
     }
     if (Medicare == null)
     {
         Medicare = "";
     }
     return(objapi.USP_Student_Select(Name, Medicare).AsEnumerable());
 }