summaryrefslogtreecommitdiff
path: root/product/DataAccess/IConnectionFactory.cs
blob: 78a38a0e0571ac43489583d1611c2be57e4212bc (plain)
1
2
3
4
5
6
7
8
9
10
using Gorilla.Commons.Infrastructure.FileSystem;
using MoMoney.DataAccess.Transactions;

namespace MoMoney.DataAccess
{
    public interface IConnectionFactory
    {
        IDatabaseConnection open_connection_to(IFile the_path_to_the_database_file);
    }
}