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); } }