@@ -6,8 +6,7 @@ public static class TestData
66 {
77 Age = 2 ,
88 Firstname = "John" ,
9- UserId = Guid . Parse ( "58cdeca3-645b-457c-87aa-7d5f87734255" ) ,
10- DateOfBirth = DateTime . Parse ( "2004-01-31 23:59:59" ) ,
9+ DateOfBirth = DateTime . Parse ( "2004-01-31 23:59:59" ) . ToUniversalTime ( ) ,
1110 BalanceDecimal = 1.50m ,
1211 IsEmailVerified = true ,
1312 Addresses = new [ ]
@@ -27,8 +26,7 @@ public static class TestData
2726 {
2827 Age = 16 ,
2928 Firstname = "Manager 01" ,
30- UserId = Guid . Parse ( "671e6bac-b6de-4cc7-b3e9-1a6ac4546b43" ) ,
31- DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) ,
29+ DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) . ToUniversalTime ( ) ,
3230 BalanceDecimal = 2.00m ,
3331 IsEmailVerified = false
3432 }
@@ -37,8 +35,7 @@ public static class TestData
3735 {
3836 Age = 9 ,
3937 Firstname = "Jane" ,
40- UserId = Guid . Parse ( "58cdeca3-645b-457c-87aa-7d5f87734255" ) ,
41- DateOfBirth = DateTime . Parse ( "2020-05-09 15:30:00" ) ,
38+ DateOfBirth = DateTime . Parse ( "2020-05-09 15:30:00" ) . ToUniversalTime ( ) ,
4239 BalanceDecimal = 0 ,
4340 IsEmailVerified = false ,
4441 Addresses = new [ ]
@@ -59,8 +56,7 @@ public static class TestData
5956 {
6057 Age = 1 ,
6158 Firstname = "Apple" ,
62- UserId = Guid . Parse ( "58cdeca3-645b-457c-87aa-7d5f87734255" ) ,
63- DateOfBirth = DateTime . Parse ( "1980-12-31 00:00:01" ) ,
59+ DateOfBirth = DateTime . Parse ( "1980-12-31 00:00:01" ) . ToUniversalTime ( ) ,
6460 BalanceFloat = 1204050.98f ,
6561 IsEmailVerified = true ,
6662 Addresses = new [ ]
@@ -80,8 +76,7 @@ public static class TestData
8076 {
8177 Age = 16 ,
8278 Firstname = "Manager 01" ,
83- UserId = Guid . Parse ( "671e6bac-b6de-4cc7-b3e9-1a6ac4546b43" ) ,
84- DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) ,
79+ DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) . ToUniversalTime ( ) ,
8580 BalanceDecimal = 2.00m ,
8681 IsEmailVerified = true
8782 } ,
@@ -91,8 +86,7 @@ public static class TestData
9186 {
9287 Age = 1 ,
9388 Firstname = "Harry" ,
94- UserId = Guid . Parse ( "e4c7772b-8947-4e46-98ed-644b417d2a08" ) ,
95- DateOfBirth = DateTime . Parse ( "2002-08-01" ) ,
89+ DateOfBirth = DateTime . Parse ( "2002-08-01" ) . ToUniversalTime ( ) ,
9690 BalanceDecimal = 0.5372958205929493m ,
9791 IsEmailVerified = false ,
9892 Addresses = Array . Empty < Address > ( )
@@ -101,8 +95,7 @@ public static class TestData
10195 {
10296 Age = 1 ,
10397 Firstname = "Doe" ,
104- UserId = Guid . Parse ( "58cdeca3-645b-457c-87aa-7d5f87734255" ) ,
105- DateOfBirth = DateTime . Parse ( "2023-07-26 12:00:30" ) ,
98+ DateOfBirth = DateTime . Parse ( "2023-07-26 12:00:30" ) . ToUniversalTime ( ) ,
10699 BalanceDecimal = null ,
107100 IsEmailVerified = true ,
108101 Addresses = new [ ]
@@ -118,8 +111,7 @@ public static class TestData
118111 {
119112 Age = 33 ,
120113 Firstname = "Egg" ,
121- UserId = Guid . Parse ( "58cdeca3-645b-457c-87aa-7d5f87734255" ) ,
122- DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) ,
114+ DateOfBirth = DateTime . Parse ( "2000-01-01 00:00:00" ) . ToUniversalTime ( ) ,
123115 BalanceDouble = 1334534453453433.33435443343231235652d ,
124116 IsEmailVerified = false ,
125117 Addresses = new [ ]
@@ -139,24 +131,21 @@ public static class TestData
139131 {
140132 Age = 18 ,
141133 Firstname = "Manager 02" ,
142- UserId = Guid . Parse ( "2bde56ac-4829-41fb-abbc-2b8454962e2a" ) ,
143- DateOfBirth = DateTime . Parse ( "1999-04-21 00:00:00" ) ,
134+ DateOfBirth = DateTime . Parse ( "1999-04-21 00:00:00" ) . ToUniversalTime ( ) ,
144135 BalanceDecimal = 19.00m ,
145136 IsEmailVerified = true ,
146137 Manager = new User
147138 {
148139 Age = 30 ,
149140 Firstname = "Manager 03" ,
150- UserId = Guid . Parse ( "8ef23728-c429-42f9-98ee-425419092664" ) ,
151- DateOfBirth = DateTime . Parse ( "1993-04-21 00:00:00" ) ,
141+ DateOfBirth = DateTime . Parse ( "1993-04-21 00:00:00" ) . ToUniversalTime ( ) ,
152142 BalanceDecimal = 29.00m ,
153143 IsEmailVerified = true ,
154144 Manager = new User
155145 {
156146 Age = 40 ,
157147 Firstname = "Manager 04" ,
158- UserId = Guid . Parse ( "4cde56ac-4829-41fb-abbc-2b8454962e2a" ) ,
159- DateOfBirth = DateTime . Parse ( "1983-04-21 00:00:00" ) ,
148+ DateOfBirth = DateTime . Parse ( "1983-04-21 00:00:00" ) . ToUniversalTime ( ) ,
160149 BalanceDecimal = 39.00m ,
161150 IsEmailVerified = true
162151 } ,
@@ -173,7 +162,6 @@ public static class TestData
173162 {
174163 Age = 4 ,
175164 Firstname = "NullUser" ,
176- UserId = Guid . Parse ( "11111111-1111-1111-1111-111111111111" ) ,
177165 DateOfBirth = null ,
178166 BalanceDecimal = null ,
179167 BalanceDouble = null ,
0 commit comments