Files
Kansan/KanSan.ViewModel/SewerMainMenuViewModel.cs

29 lines
603 B
C#

using KanSan.Base.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace KanSan.ViewModel
{
public class SewerMainMenuViewModel : PropertyChangedClass,INotifyPropertyChanged
{
private Sewer model;
public string ObjektBezeichnung
{
get
{
return model.ObjektNummer;
}
}
public SewerMainMenuViewModel(Sewer model)
{
if (model == null) throw new ArgumentNullException();
this.model = model;
}
}
}