Exemple #1
0
        public List<int> GetDataBlockIdByRecordsCount(int recordsCount)
        {
            SQLDB_Records sqldbRecords = new SQLDB_Records(connectionString);
            List<int> dataBlockIdList = new List<int>();

            dataBlockIdList = sqldbRecords.Get_DataBlockIdByRecordsCount(recordsCount);

            return dataBlockIdList;
        }