moved observableobject to util

This commit is contained in:
Sem van der Hoeven
2020-10-14 15:01:13 +02:00
parent c5c74a3d7a
commit 11ebc67c13
11 changed files with 10 additions and 13 deletions

View File

@@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using System.Text;
using Util;
namespace DoctorApp.Models
{

View File

@@ -1,12 +0,0 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace DoctorApp.Utils
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
}
}

View File

@@ -6,6 +6,7 @@ using System.Collections.Generic;
using System.Text;
using System.Windows.Controls;
using System.Windows.Input;
using Util;
namespace DoctorApp.ViewModels
{

View File

@@ -5,6 +5,7 @@ using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Text;
using System.Windows.Controls;
using Util;
namespace DoctorApp.ViewModels
{

View File

@@ -3,6 +3,7 @@ using DoctorApp.Utils;
using System;
using System.Collections.Generic;
using System.Text;
using Util;
namespace DoctorApp.ViewModels
{