19 lines
511 B
C#
19 lines
511 B
C#
using BeWo.Data.Entities;
|
|
using BeWo.Service.Invoicing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BEWODIREKTGmbH.Invoicing
|
|
{
|
|
public class CustomInvoiceFactory : InvoiceFactory
|
|
{
|
|
public override SettlementInvoiceCreation CreateSettlementInvoiceCreator(string costbearerId, string tenant, CostBearer2SupportConcept lCb2Sc)
|
|
{
|
|
return new CustomSettlementInvoiceCreation();
|
|
}
|
|
}
|
|
}
|