using BeWo.Data.Entities; using BeWo.Service.Invoicing; using BS.Shared.DataContracts; using BS.Shared.DataContracts.Compact; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LebenszentrumKoenigsborn.Invoicing { public class CustomInvoiceFactory : InvoiceFactory { public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary> supportConcepts2ServiceRecords) { return new CustomInvoiceCreation(); } public override SettlementInvoiceCreation CreateSettlementInvoiceCreator(string costbearerId, string tenant, CostBearer2SupportConcept lCb2Sc) { return new CustomSettlementInvoiceCreation(); } } }