MH: Suchthilfe Wuppertal Silvester
This commit is contained in:
@@ -125,6 +125,7 @@
|
||||
<Compile Include="ServicesOverviewReport.Designer.cs">
|
||||
<DependentUpon>ServicesOverviewReport.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Service\CustomVacationService.cs" />
|
||||
<Compile Include="Service\FfEmployeeService.cs" />
|
||||
<Compile Include="Service\FfCustomerService.cs" />
|
||||
<Compile Include="Service\FfStundenuebersichtAuswertung.cs" />
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
using BeWo.Service.Plugins;
|
||||
using BS.Shared.DataContracts;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FreundeskreisSuchthilfe.Service
|
||||
{
|
||||
public class CustomVacationService : VacationService
|
||||
{
|
||||
public override List<FeiertagDC> GetFeiertage(int year, string bundesland)
|
||||
{
|
||||
var list = base.GetFeiertage(year, bundesland);
|
||||
|
||||
if (year >= 2024)
|
||||
{
|
||||
list.Add(new FeiertagDC() { Datum = new DateTime(year, 12, 31), Name = "Silvester" });
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
ReportImp/FreundeskreisSuchthilfe/logoSuchthilfeWuppertal.png
Normal file
BIN
ReportImp/FreundeskreisSuchthilfe/logoSuchthilfeWuppertal.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.7 KiB |
BIN
ReportImp/FreundeskreisSuchthilfe/logoSuchthilfeWuppertalNeu.png
Normal file
BIN
ReportImp/FreundeskreisSuchthilfe/logoSuchthilfeWuppertalNeu.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.7 KiB |
Reference in New Issue
Block a user