Bewertungssystem angefangen

This commit is contained in:
2023-09-11 20:39:23 +02:00
parent f41cfff5c0
commit 560ac6246b
32 changed files with 9504 additions and 51 deletions

View File

@@ -8,11 +8,11 @@ using System.Threading.Tasks;
namespace dcnsanplanung.wpf.ViewModel
{
internal class BaseViewModel : INotifyPropertyChanged
internal abstract class BaseViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler? PropertyChanged;
void OnPropertyChanged([CallerMemberName] string propertyName = "")
protected void OnPropertyChanged([CallerMemberName] string propertyName = "")
{
if(PropertyChanged != null)
{