Skip to content

Instantly share code, notes, and snippets.

@andreasohlund
Created November 21, 2011 10:09
Show Gist options
  • Select an option

  • Save andreasohlund/1382212 to your computer and use it in GitHub Desktop.

Select an option

Save andreasohlund/1382212 to your computer and use it in GitHub Desktop.
public interface IManageUnitsOfWork
{
/// <summary>
/// Called before all message handlers and modules
/// </summary>
void Begin();
/// <summary>
/// Called after all message handlers and modules
/// </summary>
void End(Exception ex = null);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment