MVVM Implementing started
This commit is contained in:
21
SewerStammGen/ViewModel/IViewModel.cs
Normal file
21
SewerStammGen/ViewModel/IViewModel.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.ViewModel
|
||||
{
|
||||
public interface IViewModel : INotifyPropertyChanged
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public interface IViewModel<TModel> : IViewModel
|
||||
{
|
||||
[Browsable(false)]
|
||||
[Bindable(false)]
|
||||
TModel Model { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user