using System; using System.Collections.Generic; using System.Text; using Tango.DAL.Entities; namespace Tango.DAL { public interface IUnitOfWork : IDisposable { IRepository Organizations { get; } IRepository Machines { get; } void Commit(); } }