Personenmodul hinzugefügt - schreibgeschützt

Mitarbeitermodul mit Abwesenheiten hinzugefügt
Einbau des Dokumententeils vereinfacht.
This commit is contained in:
2026-02-04 18:03:01 +01:00
parent 9a8c7d19eb
commit 8ae75cfc77
26 changed files with 1428 additions and 93 deletions

View File

@@ -133,5 +133,15 @@ namespace BS.Shared.Extensions
public static string SenderAddressToString(this IInvoiceBase invoiceBase)
=> $"{invoiceBase.SenderStreet}, {invoiceBase.SenderTown}, {invoiceBase.SenderPostCode}";
public static string FirstCharToUpper(this string input)
{
if(string.IsNullOrWhiteSpace(input))
{
return input;
}
return char.ToUpper(input[0]) + input.Substring(1);
}
}
}