Skip to content

Instantly share code, notes, and snippets.

@ashutoshraina
Created February 2, 2013 11:46
Show Gist options
  • Save ashutoshraina/4696964 to your computer and use it in GitHub Desktop.
Save ashutoshraina/4696964 to your computer and use it in GitHub Desktop.
IUnitOfWork
using System;
namespace EFRepository.Infrastructure
{
/// <summary>
/// The Interface for implementing a UnitOfWork in the Repository
/// </summary>
public interface IUnitOfWork : IDisposable
{
void Commit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment