summaryrefslogtreecommitdiff
path: root/product/DataAccess/Transactions/IChangeTrackerFactory.cs
blob: 2117cbe195cfab394a9706bea444047c4788bd4d (plain)
1
2
3
4
5
6
7
8
9
10
using System;
using Gorilla.Commons.Utility.Core;

namespace MoMoney.DataAccess.Transactions
{
    public interface IChangeTrackerFactory
    {
        IChangeTracker<T> create_for<T>() where T : IIdentifiable<Guid>;
    }
}