Files
BeWoPlaner/ReportImp/VkmAachenSbd/LeistungsnachweisReport.cs
Christian dbed05ccb2 cb
2018-11-22 14:05:45 +01:00

37 lines
816 B
C#

using System;
using System.Collections.Generic;
using BeWo.Report.ReportObjects;
using BeWo.Report;
using DevExpress.XtraReports.UI;
using System.Data;
using BS.Shared.Core;
using BS.Shared.DataContracts;
namespace VkmAachenSbd
{
public partial class Leistungsnachweis : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<QueryRO>
{
public Leistungsnachweis()
{
InitializeComponent();
}
public void SetReportDataSource(QueryRO pRO)
{
var subReport = new VkmAachenSbd.LeistungsnachweisAbrechnung();
//ServiceInvoiceRO ro = ServiceInvoiceRO.Create();
//subReport.SetReportDataSource(pRO);
this.xrSubreport1.ReportSource = subReport;
this.bindingSource1.DataSource = pRO;
}
}
}