namespace IStation.DAL.PostgreSql { /// /// /// public partial class AnalysisCombine : Yw.DAL.PostgreSql.BaseDAL, IAnalysisCombine { /// /// /// public override ConnectionConfig ConnectionConfig { get { return ConfigHelper.PostgreSqlConnectionConfig; } } public bool BulkInsertsEx(string runFlag, List list) { throw new NotImplementedException(); } public bool DeleteAllTable() { throw new NotImplementedException(); } public bool ExistTable(string runFlag) { throw new NotImplementedException(); } public Dictionary> GetAllTable() { throw new NotImplementedException(); } public List GetAllTableName() { throw new NotImplementedException(); } public List GetNoAnalysisByTableName(string tableName) { throw new NotImplementedException(); } public bool UpdateAnaStatus(string tableName, long id) { throw new NotImplementedException(); } public bool UpdateAnaStatus(string tableName, List ids) { throw new NotImplementedException(); } Dictionary> IAnalysisCombine.GetAllTable() { throw new NotImplementedException(); } } }