public string getMarks4TeachersBLL(string userName, string className, string subjectName, ref DataSet res) { string s; PakturkDLL.ViewMarks vm = new PakturkDLL.ViewMarks(); s = vm.getMarks4TeacherDLL(userName, className, subjectName, ref res); return(s); }
public string SaveStudentMarksBLL(string userName, string className, string subjectName, ref DataSet res) { string s; PakturkDLL.ViewMarks vm = new PakturkDLL.ViewMarks(); s = vm.saveStudentMarksDLL(userName, className, subjectName, ref res); return(s); }
public DataSet getMarks4StudentsBLL(string rollNo) { DataSet s = new DataSet(); PakturkDLL.ViewMarks v = new PakturkDLL.ViewMarks(); s = v.getMarks4StudentsDLL(rollNo); return(s); }