17 lines
390 B
C#
17 lines
390 B
C#
using BeWo.Data.Entities;
|
|
using BeWo.Service.Invoicing;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace PsychosozialeHilfeKrefeld.Invoicing
|
|
{
|
|
|
|
public class CustomSettlementInvoiceCreation : SettlementInvoiceCreation
|
|
{
|
|
public override bool CanCreateInvoiceTheOldWay(Settlement2DC si, CostBearer2SupportConcept c2s)
|
|
{
|
|
// nur noch (der neue) SettlementReport2
|
|
return false;
|
|
}
|
|
}
|
|
}
|