예제 #1
0
 public static ENOTLAR Select(int ogrenciId, int dersId)
 {
     if (ogrenciId > 0 && dersId > 0)
     {
         return(FNOTLAR.Select(ogrenciId, dersId));
     }
     else
     {
         return(null);
     }
 }
예제 #2
0
 public static List <ENOTLAR> Select(int ogrenciId)
 {
     if (ogrenciId > 0)
     {
         return(FNOTLAR.Select(ogrenciId));
     }
     else
     {
         return(null);
     }
 }