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