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