@@ -32,7 +32,8 @@ static async Task SetUSLocations()
3232 var us = new Locations ( )
3333 {
3434 Code = "US" ,
35- Description = "United States"
35+ Description = "United States" ,
36+ LocationId = 1
3637 } ;
3738 us . SetLocation ( - 101.357386 , 41.650455 ) ;
3839 us . SetArea ( GetUSPoligon ( ) ) ;
@@ -46,7 +47,8 @@ static async Task SetWashingtonLocations(string parentId)
4647 {
4748 Parent_Id = parentId ,
4849 Code = "WHT" ,
49- Description = "Washington"
50+ Description = "Washington" ,
51+ LocationId = 2
5052 } ;
5153 wht . SetLocation ( - 119.542781 , 47.223652 ) ;
5254 wht . SetArea ( GetWashingtonPoligon ( ) ) ;
@@ -61,7 +63,8 @@ static async Task SetSeattleLocations(string parentId)
6163 {
6264 Parent_Id = parentId ,
6365 Code = "SEAT" ,
64- Description = "Seattle"
66+ Description = "Seattle" ,
67+ LocationId = 3
6568 } ;
6669 stl . SetArea ( GetSeattlePoligon ( ) ) ;
6770 stl . SetLocation ( - 122.330747 , 47.603111 ) ;
@@ -74,7 +77,8 @@ static async Task SetRedmondLocations(string parentId)
7477 {
7578 Parent_Id = parentId ,
7679 Code = "REDM" ,
77- Description = "Redmond"
80+ Description = "Redmond" ,
81+ LocationId = 4
7882 } ;
7983 rdm . SetLocation ( - 122.122887 , 47.674961 ) ;
8084 rdm . SetArea ( GetRedmondPoligon ( ) ) ;
0 commit comments