Пример #1
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to get the ReportName of ReportID in sys_Report
        ///    </Description>
        ///    <Inputs>
        ///        ReportID
        ///    </Inputs>
        ///    <Outputs>
        ///        ReportName
        ///    </Outputs>
        ///    <Returns>
        ///       string
        ///    </Returns>
        ///    <Authors>
        ///       DungLA
        ///    </Authors>
        ///    <History>
        ///       20-Jan-2005
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************

        public string GetReportName(string pstrReportID)
        {
            sys_ReportDS dsReport = new sys_ReportDS();

            return(dsReport.GetReportName(pstrReportID));
        }