Files
BeWoPlaner/ReportImp/AidshilfeEssen/Invoicing/CustomInvoiceFactory.cs
Christian 49a5f5e7dd cb
2022-04-29 20:37:37 +02:00

22 lines
510 B
C#

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