63 lines
2.1 KiB
C#
63 lines
2.1 KiB
C#
using SewerStammGen.Shared.Contracts;
|
|
using SewerStammGen.Shared.Domain;
|
|
using SewerStammGen.WPF.Commands;
|
|
using SewerStammGen.WPF.Interface.Navigator;
|
|
using SewerStammGen.WPF.ViewModel.State;
|
|
using Shared.Contracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace SewerStammGen.WPF.ViewModel
|
|
{
|
|
public class ManholeListViewModel : BaseViewModel
|
|
{
|
|
private ISchachtDataService _schachtDataService;
|
|
private readonly ObservableCollection<Schacht> _schaechte;
|
|
private readonly IActualState _actualState;
|
|
|
|
public ObservableCollection<Schacht> Schaechte { get => _schaechte; }
|
|
|
|
public Schacht? SelectedSchacht { get; set; }
|
|
|
|
public ICommand AddSchachtCommand { get; set; }
|
|
public ICommand EditSchachtCommand { get; set; }
|
|
public ICommand DeleteSchachtCommand { get; set; }
|
|
|
|
|
|
public ManholeListViewModel(ISchachtDataService schachtDataService, IDataService<Projekt> projektService,IRenavigator renavigator ,IActualState actualState)
|
|
{
|
|
_schachtDataService = schachtDataService;
|
|
_actualState = actualState;
|
|
|
|
_schaechte = new ObservableCollection<Schacht>();
|
|
|
|
|
|
AddSchachtCommand = new SchachtAddCommand(projektService, actualState,renavigator);
|
|
EditSchachtCommand = new SchachtEditCommand(schachtDataService, actualState, renavigator,this);
|
|
DeleteSchachtCommand = new SchachtDeleteCommand(schachtDataService, actualState, renavigator, this);
|
|
|
|
LoadSchaechte();
|
|
}
|
|
|
|
private async void LoadSchaechte()
|
|
{
|
|
//var schaechte = await _schachtDataService.GetAll(_actualState.ProjektID);
|
|
//InitCollection(_schaechte, schaechte);
|
|
}
|
|
|
|
private void InitCollection(ObservableCollection<Schacht> dest, IEnumerable<Schacht> source)
|
|
{
|
|
dest.Clear();
|
|
foreach(var i in source)
|
|
{
|
|
dest.Add(i);
|
|
}
|
|
}
|
|
}
|
|
}
|