Baustellen können nun angelegt und ausgewählt werden
This commit is contained in:
12
KanSan.Base/Interfaces/UI/IBaustelleEditViewModel.cs
Normal file
12
KanSan.Base/Interfaces/UI/IBaustelleEditViewModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace KanSan.Base.Interfaces.UI
|
||||
{
|
||||
public interface IBaustelleEditViewModel
|
||||
{
|
||||
string BaustelleNummer { get; set; }
|
||||
string OrtTeil { get; set; }
|
||||
}
|
||||
}
|
||||
12
KanSan.Base/Interfaces/UI/IBaustelleListViewModel.cs
Normal file
12
KanSan.Base/Interfaces/UI/IBaustelleListViewModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using KanSan.Base.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace KanSan.Base.Interfaces.UI
|
||||
{
|
||||
public interface IBaustelleListViewModel
|
||||
{
|
||||
List<Baustelle> Baustellen { get; }
|
||||
}
|
||||
}
|
||||
16
KanSan.Base/Interfaces/UI/IObjekteEditViewModel.cs
Normal file
16
KanSan.Base/Interfaces/UI/IObjekteEditViewModel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace KanSan.Base.Interfaces.UI
|
||||
{
|
||||
public interface IObjekteEditViewModel
|
||||
{
|
||||
string StrasseName { get; set; }
|
||||
string Objektnummer { get; set; }
|
||||
string PunktOben { get; set; }
|
||||
string PunktUnten { get; set; }
|
||||
int Durchmesser { get; set; }
|
||||
string Material { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -5,7 +5,7 @@ using System.Text;
|
||||
|
||||
namespace KanSan.Base.Interfaces.UI
|
||||
{
|
||||
public interface IProjekteListViewModel
|
||||
public interface IProjektListViewModel
|
||||
{
|
||||
List<Projekt> ProjekteVomKunde { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user