Example #1
0
    public void BindReportMoney()
    {
        ReportManaBLL rmb = new ReportManaBLL();
        float         str = rmb.GetReportMoney(merID);

        MoneyAccount = str;
    }
Example #2
0
    public void BindReportList()
    {
        int           count;
        ReportManaBLL rmb = new ReportManaBLL();
        DataSet       ds  = rmb.GetReportByMerID(merID, MerReportPager.PageSize, MerReportPager.CurrentPageIndex, out count);

        MerReportPager.RecordCount = count;
        ReportGrdList.DataSource   = ds;
        ReportGrdList.DataBind();
    }