change geographical names in seeding data
All checks were successful
/ build (push) Successful in 7m12s
/ tests (push) Successful in 2m55s
/ build-docker (push) Successful in 5m24s

This commit is contained in:
cuqmbr 2025-06-15 13:56:48 +03:00
parent 8348dd5e84
commit 06d88a02ae
Signed by: cuqmbr
GPG Key ID: 0AA446880C766199

View File

@ -133,7 +133,7 @@ public sealed class DbSeeder : IDisposable
{ {
new Country() new Country()
{ {
Name = "Country 0" Name = "Ukraine"
} }
}; };
@ -149,12 +149,12 @@ public sealed class DbSeeder : IDisposable
{ {
new Region() new Region()
{ {
Name = "Region 0", Name = "Kyiv Region",
Country = countries[0] Country = countries[0]
}, },
new Region() new Region()
{ {
Name = "Region 1", Name = "Zhytomyr Region",
Country = countries[0] Country = countries[0]
} }
}; };
@ -171,22 +171,22 @@ public sealed class DbSeeder : IDisposable
{ {
new City() new City()
{ {
Name = "City 0", Name = "Brovary",
Region = regions[0] Region = regions[0]
}, },
new City() new City()
{ {
Name = "City 1", Name = "Bila Tserkva",
Region = regions[0] Region = regions[0]
}, },
new City() new City()
{ {
Name = "City 2", Name = "Korostyshiv",
Region = regions[1] Region = regions[1]
}, },
new City() new City()
{ {
Name = "City 3", Name = "Stanyshivka",
Region = regions[1] Region = regions[1]
} }
}; };
@ -410,7 +410,7 @@ public sealed class DbSeeder : IDisposable
var companyOwnerAccountCredentials = var companyOwnerAccountCredentials =
new (string Username, string Email)[] new (string Username, string Email)[]
{ {
("company_owner0", "company_owner0@email.com") ("light_travel_owner", "light_travel_owner0@email.com")
}; };
var companyOwnerAccounts = new List<Account>(); var companyOwnerAccounts = new List<Account>();
@ -454,10 +454,10 @@ public sealed class DbSeeder : IDisposable
{ {
new Company() new Company()
{ {
Name = "Company 0", Name = "Light Travel",
LegalAddress = "Country 0, Region 0, City 0, Address 0", LegalAddress = "Ukraine, Kyiv Region, Kyiv, Address 0",
ContactEmail = "company0@email.com", ContactEmail = "light-travel@email.com",
ContactPhoneNumber = "+000000000000", ContactPhoneNumber = "+38000000000",
Account = companyOwnerAccounts[0] Account = companyOwnerAccounts[0]
} }
}; };