Files
BeWoPlaner/Report/ReportObjects/AbwesenheitsPrintRO.cs

27 lines
682 B
C#

using BS.Shared.DataContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWo.Report.ReportObjects
{
public class AbwesenheitsPrintRO : AbstractBeWoReportObject<AbwesenheitsPrintRO>
{
public string Titel { get; set; }
public List<AbwesenheitsInformationPrintDC> printDCs { get; set; }
public static AbwesenheitsPrintRO Create(List<AbwesenheitsInformationPrintDC> dcs, string titel)
{
AbwesenheitsPrintRO ro = new AbwesenheitsPrintRO();
ro.Titel = titel;
ro.printDCs = dcs;
return ro;
}
}
}