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