namespace IStation.DAL.PostgreSql
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public partial class AnalysisParameter : Yw.DAL.PostgreSql.BaseDAL<Entity.AnalysisParameter>, IAnalysisParameter
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public override ConnectionConfig ConnectionConfig
|
{
|
get { return ConfigHelper.PostgreSqlConnectionConfig; }
|
|
}
|
|
public bool BulkInsertsEx(string runFlag, List<Entity.AnalysisParameter> list)
|
{
|
throw new NotImplementedException();
|
}
|
|
public bool DeleteAllTable()
|
{
|
throw new NotImplementedException();
|
}
|
|
public bool ExistTable(string runFlag)
|
{
|
throw new NotImplementedException();
|
}
|
|
public Dictionary<string, List<Entity.AnalysisParameter>> GetAllTable()
|
{
|
throw new NotImplementedException();
|
}
|
|
public List<string> GetAllTableName()
|
{
|
throw new NotImplementedException();
|
}
|
|
public List<Entity.AnalysisParameter> GetList(string runFlag, double targetHead)
|
{
|
throw new NotImplementedException();
|
}
|
|
public List<Entity.AnalysisParameter> GetNoAnalysisByTableName(string tableName)
|
{
|
throw new NotImplementedException();
|
}
|
|
public string GetTableName(string runFlag)
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|