25 lines
575 B
C#
25 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BeWo.Service.DCEntityMapper;
|
|
using BeWo.Service.Invoicing;
|
|
using BeWo.Service.Plugins;
|
|
using BS.Shared;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.Extensions;
|
|
using BS.Shared.Services;
|
|
|
|
namespace LebensBruecke.Invoicing
|
|
{
|
|
public class CustomLWLDiggaBerechnung : LWLDiggaBerechnung
|
|
{
|
|
public override void InitBerechnung()
|
|
{
|
|
//this.Umstellungsdatum = new DateTime(2025, 1, 1);
|
|
}
|
|
}
|
|
}
|