Exemplo n.º 1
0
        public void ShowReportDevideUnitPersonList(string yearin)
        {
            try
            {
                Reports.ReportDisplay f            = new Reports.ReportDisplay();
                var dataSource                     = dcore.ReportLabelUnitListPerson(yearin);
                List <ReportParameter> reportParam = new List <ReportParameter>();
                reportParam.Add(new ReportParameter("yearin", dcore.GetMaxYearin()));

                f.DisplayReport(dataSource, "Navy.Reports.ReportDevideUnit.rdlc");
                f.Show();
            }
            catch
            {
                throw;
            }
        }