Files
BeWoPlaner/ReportImp/PassgenauUG/Invoicing/CustomInvoiceFactory.cs
2021-02-21 19:01:51 +01:00

27 lines
764 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 PassgenauUG.Invoicing
{
public class CustomInvoiceFactory : InvoiceFactory
{
public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
{
return new DefaultInvoiceCreation();
}
public override SettlementInvoiceCreation CreateSettlementInvoiceCreator(string costbearerId, string tenant,
CostBearer2SupportConcept lCb2Sc)
{
return base.CreateSettlementInvoiceCreator(costbearerId, tenant, lCb2Sc);
}
}
}