narsil/Tanshu.Accounts.Repository/IUnitOfWork.cs
2014-10-16 16:45:03 +05:30

13 lines
218 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Tanshu.Accounts.Repository
{
public interface IUnitOfWork : IDisposable
{
void SaveChanges();
}
}