Files
Kansan/KanSan.Base/Interfaces/IUnitOfWork.cs
2020-02-20 21:32:36 +01:00

15 lines
316 B
C#

using KanSan.Base.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.Base.Interfaces
{
public interface IUnitOfWork
{
IRepository<Baustelle> BaustellenRepository { get; }
IRepository<Kunde> KundenRepository { get; }
void Commit();
}
}