20 lines
468 B
C#
20 lines
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Service.Invoicing;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace Hiba
|
|
{
|
|
public class HibaInvoiceFactory : InvoiceFactory
|
|
{
|
|
|
|
public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
|
|
{
|
|
return new HibaDefaultInvoiceCreation();
|
|
|
|
}
|
|
|
|
}
|
|
}
|