Example #1
0
 public ResponsitryBase(string _configName, DBType dBType)
 {
     configName     = _configName;
     this.dbcontext = new HDBContext(ConfigHelper.GetSectionValue(configName), dBType);
 }
Example #2
0
 public ResponsitryBase(DBType dBType)
 {
     this.dbcontext = new HDBContext(ConfigHelper.GetSectionValue(configName), dBType);
 }