main
1using System;
2
3namespace presentation.windows.server.orm
4{
5 public interface IUnitOfWork : IDisposable
6 {
7 void commit();
8 bool is_dirty();
9 }
10}