Personenmodul hinzugefügt - schreibgeschützt
Mitarbeitermodul mit Abwesenheiten hinzugefügt Einbau des Dokumententeils vereinfacht.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user