Update to latest packages and show examples

This commit is contained in:
2026-07-05 22:05:53 +02:00
parent 3a36978997
commit c7ddc282ed
52 changed files with 2156 additions and 21 deletions
@@ -0,0 +1,23 @@
using GerstITS.Common;
using GerstITS.System.Customizations;
namespace GerstITS.Examples.Logic.Customers.Customizations;
internal sealed class CustomerDisplayNameCustomization : CustomizationBase<Customer>
{
#region Methods
protected override bool CanCustomize(Customer item)
{
return item.IsNotNull();
}
protected override Customer Customize(Customer item)
{
item.DisplayName = $"{item.LastName}, {item.FirstName}";
return item;
}
#endregion
}