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

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