Repository erweitert

This commit is contained in:
Husky
2020-02-21 10:01:01 +01:00
parent 38e4d2aa6e
commit 842c42be58
3 changed files with 29 additions and 5 deletions

View File

@@ -7,8 +7,11 @@ namespace KanSan.Base.Interfaces
{
public interface IUnitOfWork
{
IRepository<Projekt> BaustellenRepository { get; }
IRepository<Projekt> ProjekteRepository { get; }
IRepository<Kunde> KundenRepository { get; }
IRepository<Baustelle> BaustelleRepository { get; }
IRepository<Sewer> KanaeleRepository { get; }
IRepository<SewerPoint> ObjekteRepository { get; }
void Commit();
}
}