27 lines
679 B
C#
27 lines
679 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BeWo.Report;
|
|
using BeWo.Report.ReportObjects;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BfpDus
|
|
{
|
|
public partial class Briefkopf : DevExpress.XtraReports.UI.XtraReport
|
|
{
|
|
public Briefkopf()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetSubReport(DevExpress.XtraReports.UI.XtraReport report, String anschrift, String ansprechpartner)
|
|
{
|
|
lblAnschrift.Text = anschrift;
|
|
lblAnsprechpartnerUndDatum.Text = ansprechpartner;
|
|
xrSubreport1.ReportSource = report;
|
|
|
|
}
|
|
}
|
|
}
|