25 lines
462 B
C#
25 lines
462 B
C#
using KanSan.Base;
|
|
using KanSan.Base.Interfaces;
|
|
using KanSan.Base.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace KanSan.ViewModel
|
|
{
|
|
public class ProjektListViewModel
|
|
{
|
|
IUnitOfWork unitOfWork = new UnitOfWork(new KanSanContext());
|
|
|
|
public void SelectProjekt()
|
|
{
|
|
|
|
}
|
|
|
|
public Projekt NeueProjekt()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|