private void StageThirdCalling()
    {
        objStudentReport = new StudentGenderwiseReport_BLogic();
        dsResult         = new DataSet();

        dsResult = objStudentReport.GetStudentListBySchoolBMSGenderDivisionID(this.SchoolID, this.BMSID, this.DivisionID, this.AcademicYear);
        GetConnectionStringSTRING obj = new GetConnectionStringSTRING();

        connectionstring = obj.BAL_EpathshalaStudentString();

        BMSwiseStudentList.XMLReportFile = Server.MapPath("../ReportXMLFiles/BMSwiseStudentListReport.xml");
        BMSwiseStudentList.Search(dsResult.Tables[0]);
        CurrentReport = "BMSwise Student List";
    }
    private void StageTwoCalling()
    {
        dsResult             = new DataSet();
        this.objGenderReport = new StudentGenderwiseReport_BLogic();

        dsResult = objGenderReport.GetBMSwiseStudentGenderReport(this.SchoolID, this.BoardID, this.MediumID, this.StandardID, this.AcademicYear);
        GetConnectionStringSTRING obj = new GetConnectionStringSTRING();

        connectionstring = obj.BAL_EpathshalaStudentString();

        BMSwiseStudentGender.XMLReportFile = Server.MapPath("../ReportXMLFiles/BMSwiseStudentGenderReport.xml");
        BMSwiseStudentGender.Search(dsResult.Tables[0]);
        CurrentReport = "BMSwise Student Gender";
    }