blob: 1c36c22a8ba897e04053f3e2673f33c3c6120617 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Text;
using Tango.DAL.Entities;
namespace Tango.DAL
{
public interface IUnitOfWork : IDisposable
{
IRepository<OrganizationEntity> Organizations { get; }
IRepository<MachineEntity> Machines { get; }
void Commit();
}
}
|