コード例 #1
0
    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);
    }
コード例 #2
0
    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);
    }
コード例 #3
0
    public DataSet getMarks4StudentsBLL(string rollNo)
    {
        DataSet s = new DataSet();

        PakturkDLL.ViewMarks v = new PakturkDLL.ViewMarks();
        s = v.getMarks4StudentsDLL(rollNo);
        return(s);
    }