public static DataSet GetSTD_FeesStudentByStudentID(string StudentID,bool isDataset) { DataSet sTD_Fees = new DataSet(); SqlSTD_FeesProvider sqlSTD_FeesProvider = new SqlSTD_FeesProvider(); sTD_Fees = sqlSTD_FeesProvider.GetSTD_FeesByStudentID(StudentID,isDataset); return sTD_Fees; }
public static DataSet GetSTD_StudentByStudentID(string StudentID, int courseID) { DataSet sTD_Fees = new DataSet(); SqlSTD_FeesProvider sqlSTD_FeesProvider = new SqlSTD_FeesProvider(); sTD_Fees = sqlSTD_FeesProvider.GetSTD_FeesByStudentID(StudentID,courseID); return sTD_Fees; }
public static STD_Fees GetSTD_FeesStudentByStudentID(string StudentID) { STD_Fees sTD_Fees = new STD_Fees(); SqlSTD_FeesProvider sqlSTD_FeesProvider = new SqlSTD_FeesProvider(); sTD_Fees = sqlSTD_FeesProvider.GetSTD_FeesByStudentID(StudentID); return sTD_Fees; }