private ConfigurationObject ReadConfigurationObjectFromDataRow(DataSet dataSet)
        {
            DataRow dataRow = dataSet.Tables[0].Rows.Count == 0 ? null : dataSet.Tables[0].Rows[0];

            return(_dataRowToObjectMapper.ConvertConfigurationObject(dataRow));
        }