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

namespace MoMoney.DataAccess.Transactions
{
    public interface IStatementRegistry
    {
        IStatement prepare_delete_statement_for<T>(T entity) where T : IIdentifiable<Guid>;
        IStatement prepare_command_for<T>(T entity) where T : IIdentifiable<Guid>;
    }
}