ProjektList angefangen

This commit is contained in:
Husky
2020-02-23 20:22:06 +01:00
parent 24ae7b517c
commit 14e3860613
5 changed files with 121 additions and 6 deletions

View File

@@ -1,4 +1,7 @@
using System;
using KanSan.Base;
using KanSan.Base.Interfaces;
using KanSan.Base.Models;
using System;
using System.Collections.Generic;
using System.Text;
@@ -6,5 +9,16 @@ namespace KanSan.ViewModel
{
public class ProjektListViewModel
{
IUnitOfWork unitOfWork = new UnitOfWork(new KanSanContext());
public void SelectProjekt()
{
}
public Projekt NeueProjekt()
{
throw new NotImplementedException();
}
}
}