main
 1using Gorilla.Commons.Infrastructure.FileSystem;
 2
 3namespace momoney.database
 4{
 5    public interface IDatabaseConfiguration
 6    {
 7        void open(File file);
 8        void copy_to(string path);
 9        void close(string name);
10    }
11}