Implemented propertychanged pattern to connect UI with entity

This commit is contained in:
2025-08-19 12:42:27 +02:00
parent 44419a880d
commit 86daaa5133
8 changed files with 265 additions and 38 deletions

View File

@ -0,0 +1,30 @@
using System.ComponentModel;
namespace Common.Library;
public abstract class CommonBase : INotifyPropertyChanged
{
#region Constructor
protected CommonBase()
{
Init();
}
#endregion
#region Init Method
public virtual void Init()
{
}
#endregion
#region RaisePropertyChanged Method
public event PropertyChangedEventHandler? PropertyChanged;
public virtual void RaisePropertyChanged(string propertyName)
{
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
}