main
 1using Gorilla.Commons.Infrastructure.FileSystem;
 2using momoney.database.transactions;
 3
 4namespace momoney.database
 5{
 6    public interface IConnectionFactory
 7    {
 8        DatabaseConnection open_connection_to(File the_path_to_the_database_file);
 9    }
10}