Convert ConfLocation fully over to properties

This commit is contained in:
Matt Nadareski
2026-04-03 10:59:04 -04:00
parent 33958d37fd
commit 280e65775a
22 changed files with 76 additions and 40 deletions

View File

@@ -282,7 +282,7 @@ namespace SabreTools.Serialization.Readers.Test
var conflocation = new Data.Models.Listxml.ConfLocation
{
Name = "name",
Number = "XXXXXX",
Number = 12345,
Inverted = true,
};
@@ -779,7 +779,7 @@ namespace SabreTools.Serialization.Readers.Test
{
Assert.NotNull(conflocation);
Assert.Equal("name", conflocation.Name);
Assert.Equal("XXXXXX", conflocation.Number);
Assert.Equal(12345, conflocation.Number);
Assert.Equal(true, conflocation.Inverted);
}

View File

@@ -278,7 +278,7 @@ namespace SabreTools.Serialization.Readers.Test
var conflocation = new Data.Models.Listxml.ConfLocation
{
Name = "name",
Number = "XXXXXX",
Number = 12345,
Inverted = true,
};
@@ -773,7 +773,7 @@ namespace SabreTools.Serialization.Readers.Test
{
Assert.NotNull(conflocation);
Assert.Equal("name", conflocation.Name);
Assert.Equal("XXXXXX", conflocation.Number);
Assert.Equal(12345, conflocation.Number);
Assert.Equal(true, conflocation.Inverted);
}

View File

@@ -278,7 +278,7 @@ namespace SabreTools.Serialization.Readers.Test
var conflocation = new Data.Models.Listxml.ConfLocation
{
Name = "name",
Number = "XXXXXX",
Number = 12345,
Inverted = true,
};
@@ -773,7 +773,7 @@ namespace SabreTools.Serialization.Readers.Test
{
Assert.NotNull(conflocation);
Assert.Equal("name", conflocation.Name);
Assert.Equal("XXXXXX", conflocation.Number);
Assert.Equal(12345, conflocation.Number);
Assert.Equal(true, conflocation.Inverted);
}