Created
November 21, 2011 12:14
-
-
Save andreasohlund/1382470 to your computer and use it in GitHub Desktop.
UoW.Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class RavenUnitOfWork : IManageUnitsOfWork | |
| { | |
| readonly IDocumentSession session; | |
| public RavenUnitOfWork(IDocumentSession session) | |
| { | |
| this.session = session; | |
| } | |
| public void Begin() | |
| { | |
| } | |
| public void End(Exception ex) | |
| { | |
| if (ex == null) | |
| session.SaveChanges(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment