Skip to content

Commit 6a7bc24

Browse files
committed
Moved AttributeValuesDataTable to internal
This shouldn't be necessary outside of the `SqlTopicRepository`, so there's no need to pollute out public interface. If it becomes needed later, we can reevaluate making it public.
1 parent 337f8ce commit 6a7bc24

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

OnTopic.Data.Sql/Models/AttributeValuesDataTable.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace OnTopic.Data.Sql.Models {
1313
/// <summary>
1414
/// Extends <see cref="DataTable"/> to model the schema for the <c>AttributeValues</c> user-defined table type.
1515
/// </summary>
16-
public class AttributeValuesDataTable: DataTable {
16+
internal class AttributeValuesDataTable: DataTable {
1717

1818
/*==========================================================================================================================
1919
| CONSTRUCTOR
@@ -22,7 +22,7 @@ public class AttributeValuesDataTable: DataTable {
2222
/// Establishes a new <see cref="DataTable"/> with the appropriate schema for the <c>AttributeValues</c> user-defined
2323
/// table type.
2424
/// </summary>
25-
public AttributeValuesDataTable() {
25+
internal AttributeValuesDataTable() {
2626

2727
/*------------------------------------------------------------------------------------------------------------------------
2828
| COLUMN: Attribute Key
@@ -50,7 +50,7 @@ public AttributeValuesDataTable() {
5050
/// <summary>
5151
/// Provides a convenience method for adding a new <see cref="DataRow"/> based on the expected column values.
5252
/// </summary>
53-
public DataRow AddRow(string attributeKey, string? attributeValue = null) {
53+
internal DataRow AddRow(string attributeKey, string? attributeValue = null) {
5454

5555
/*------------------------------------------------------------------------------------------------------------------------
5656
| Define record

0 commit comments

Comments
 (0)