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

@@ -215,7 +215,7 @@ namespace SabreTools.Serialization.CrossModel.Test
var conflocation = new Data.Models.Listxml.ConfLocation
{
Name = "name",
Number = "XXXXXX",
Number = 12345,
Inverted = true,
};
@@ -712,7 +712,7 @@ namespace SabreTools.Serialization.CrossModel.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

@@ -211,7 +211,7 @@ namespace SabreTools.Serialization.CrossModel.Test
var conflocation = new Data.Models.Listxml.ConfLocation
{
Name = "name",
Number = "XXXXXX",
Number = 12345,
Inverted = true,
};
@@ -706,7 +706,7 @@ namespace SabreTools.Serialization.CrossModel.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

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