35 lines
707 B
C#
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();
|
|
|
|
}
|
|
|
|
} |