Skip to content

Commit e14cacc

Browse files
committed
Fix
1 parent 8d8cd42 commit e14cacc

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

EventsExpress.Db/DbInitialize/DbInitializer.cs

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
8282
{
8383
Name = "BAUser1",
8484
Email = "bauser1@gmail.com",
85-
Phone = "+380974293580",
86-
Birthday = DateTime.Parse("2000-01-01"),
87-
Gender = Gender.Male,
85+
Phone = "+380974293581",
86+
Birthday = DateTime.Parse("2000-01-02"),
87+
Gender = Gender.Other,
8888
Account = new Account
8989
{
9090
IsBlocked = false,
9191
AuthLocal = new AuthLocal
9292
{
93-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
93+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz1", saltDef),
9494
Salt = saltDef,
9595
Email = "bauser1@gmail.com",
9696
EmailConfirmed = true,
@@ -109,15 +109,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
109109
{
110110
Name = "BAUser2",
111111
Email = "bauser2@gmail.com",
112-
Phone = "+380974293580",
113-
Birthday = DateTime.Parse("2000-01-01"),
114-
Gender = Gender.Male,
112+
Phone = "+380974293582",
113+
Birthday = DateTime.Parse("2000-01-03"),
114+
Gender = Gender.Female,
115115
Account = new Account
116116
{
117117
IsBlocked = false,
118118
AuthLocal = new AuthLocal
119119
{
120-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
120+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz2", saltDef),
121121
Salt = saltDef,
122122
Email = "bauser2@gmail.com",
123123
EmailConfirmed = true,
@@ -136,15 +136,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
136136
{
137137
Name = "QCUser1",
138138
Email = "qcuser1@gmail.com",
139-
Phone = "+380974293580",
140-
Birthday = DateTime.Parse("2000-01-01"),
139+
Phone = "+380974293583",
140+
Birthday = DateTime.Parse("2000-01-04"),
141141
Gender = Gender.Male,
142142
Account = new Account
143143
{
144144
IsBlocked = false,
145145
AuthLocal = new AuthLocal
146146
{
147-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
147+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz3", saltDef),
148148
Salt = saltDef,
149149
Email = "qcuser1@gmail.com",
150150
EmailConfirmed = true,
@@ -163,15 +163,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
163163
{
164164
Name = "QCUser2",
165165
Email = "qcuser2@gmail.com",
166-
Phone = "+380974293580",
167-
Birthday = DateTime.Parse("2000-01-01"),
168-
Gender = Gender.Male,
166+
Phone = "+380974293584",
167+
Birthday = DateTime.Parse("2000-01-05"),
168+
Gender = Gender.Other,
169169
Account = new Account
170170
{
171171
IsBlocked = false,
172172
AuthLocal = new AuthLocal
173173
{
174-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
174+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz4", saltDef),
175175
Salt = saltDef,
176176
Email = "qcuser2@gmail.com",
177177
EmailConfirmed = true,
@@ -190,15 +190,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
190190
{
191191
Name = "QCUser3",
192192
Email = "qcuser3@gmail.com",
193-
Phone = "+380974293580",
194-
Birthday = DateTime.Parse("2000-01-01"),
195-
Gender = Gender.Male,
193+
Phone = "+380974293585",
194+
Birthday = DateTime.Parse("2000-01-06"),
195+
Gender = Gender.Female,
196196
Account = new Account
197197
{
198198
IsBlocked = false,
199199
AuthLocal = new AuthLocal
200200
{
201-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
201+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz5", saltDef),
202202
Salt = saltDef,
203203
Email = "qcuser3@gmail.com",
204204
EmailConfirmed = true,
@@ -217,15 +217,15 @@ public static void Seed(AppDbContext dbContext, IPasswordHasher passwordHasher)
217217
{
218218
Name = "QCUser4",
219219
Email = "qcuser4@gmail.com",
220-
Phone = "+380974293580",
221-
Birthday = DateTime.Parse("2000-01-01"),
220+
Phone = "+380974293586",
221+
Birthday = DateTime.Parse("2000-01-07"),
222222
Gender = Gender.Male,
223223
Account = new Account
224224
{
225225
IsBlocked = false,
226226
AuthLocal = new AuthLocal
227227
{
228-
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz", saltDef),
228+
PasswordHash = passwordHasher.GenerateHash("1qaz1qaz6", saltDef),
229229
Salt = saltDef,
230230
Email = "qcuser4@gmail.com",
231231
EmailConfirmed = true,

0 commit comments

Comments
 (0)