Files
BeWoPlaner/ReportImp/LebenshilfeAhrweiler/Invoicing/LhAhrweilerInvoiceFactory.cs
2017-09-14 19:08:35 +02:00

21 lines
593 B
C#

using System;
using System.Collections.Generic;
using BeWo.Service.DCEntityMapper;
using BeWo.Service.Invoicing;
using BS.Shared.DataContracts;
using BS.Shared.DataContracts.Compact;
using BeWo.Data.Access;
using BeWo.Data.Entities;
namespace LebenshilfeAhrweiler.Invoicing
{
public class LhAhrweilerInvoiceFactory : InvoiceFactory
{
public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
{
return new LhAhrweilerDefaultInvoiceCreation();
}
}
}