예제 #1
0
 public MyDatabase(Config.Config config) : base(config)
 {
 }
예제 #2
0
파일: Core.cs 프로젝트: maksa988/Warehouse
 public Core(string path)
 {
     this._config = new Config.Config(path);
     this._init();
 }
예제 #3
0
파일: Core.cs 프로젝트: maksa988/Warehouse
 public Core(string path, string dbname)
 {
     this._config = new Config.Config(path + DirectoryHandler.DirectorySeparator + dbname);
     this._init();
 }
예제 #4
0
파일: Core.cs 프로젝트: maksa988/Warehouse
 public Core(Config.Config config)
 {
     this._config = config;
     this._init();
 }