main
 1using System;
 2
 3namespace momoney.service.infrastructure.transactions
 4{
 5    public interface IUnitOfWork : IDisposable
 6    {
 7        void commit();
 8        bool is_dirty();
 9    }
10}