main
1using Gorilla.Commons.Infrastructure.Logging;
2
3namespace presentation.windows.server.orm
4{
5 public class EmptyUnitOfWork : IUnitOfWork
6 {
7 public void commit()
8 {
9 this.log().debug("committed empty unit of work");
10 }
11
12 public bool is_dirty()
13 {
14 return false;
15 }
16
17 public void Dispose()
18 {
19 }
20 }
21}