Files
BeWoPlaner/Service/Reporting/IJahresBerichtElement.cs
2021-03-11 12:09:38 +01:00

35 lines
707 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Services;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Service.DCEntityMapper;
using BeWo.Service.Plugins;
using Castle.Components.DictionaryAdapter;
using NHibernate.Linq;
namespace BeWo.Service.Reporting
{
public abstract class JahresBerichtBase
{
public JahresBerichtBase(String titel)
{
Titel = titel;
}
public String Titel { get; set; }
public virtual void ProcessCustomer(Customer customer)
{
}
public abstract AnnualReportDC CreateAuswertung();
}
}