Klassen erweitert

This commit is contained in:
Husky
2020-02-21 09:50:32 +01:00
parent 5798fc6108
commit fc144554a5
18 changed files with 596 additions and 192 deletions

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.Base.Interfaces
{
public interface IDatabaseEntry
{
int ID { get; set; }
Guid GuidNr { get; set; }
}
}

View File

@@ -7,7 +7,7 @@ namespace KanSan.Base.Interfaces
{
public interface IUnitOfWork
{
IRepository<Baustelle> BaustellenRepository { get; }
IRepository<Projekt> BaustellenRepository { get; }
IRepository<Kunde> KundenRepository { get; }
void Commit();
}