change geographical names in seeding data
This commit is contained in:
parent
8348dd5e84
commit
06d88a02ae
@ -133,7 +133,7 @@ public sealed class DbSeeder : IDisposable
|
||||
{
|
||||
new Country()
|
||||
{
|
||||
Name = "Country 0"
|
||||
Name = "Ukraine"
|
||||
}
|
||||
};
|
||||
|
||||
@ -149,12 +149,12 @@ public sealed class DbSeeder : IDisposable
|
||||
{
|
||||
new Region()
|
||||
{
|
||||
Name = "Region 0",
|
||||
Name = "Kyiv Region",
|
||||
Country = countries[0]
|
||||
},
|
||||
new Region()
|
||||
{
|
||||
Name = "Region 1",
|
||||
Name = "Zhytomyr Region",
|
||||
Country = countries[0]
|
||||
}
|
||||
};
|
||||
@ -171,22 +171,22 @@ public sealed class DbSeeder : IDisposable
|
||||
{
|
||||
new City()
|
||||
{
|
||||
Name = "City 0",
|
||||
Name = "Brovary",
|
||||
Region = regions[0]
|
||||
},
|
||||
new City()
|
||||
{
|
||||
Name = "City 1",
|
||||
Name = "Bila Tserkva",
|
||||
Region = regions[0]
|
||||
},
|
||||
new City()
|
||||
{
|
||||
Name = "City 2",
|
||||
Name = "Korostyshiv",
|
||||
Region = regions[1]
|
||||
},
|
||||
new City()
|
||||
{
|
||||
Name = "City 3",
|
||||
Name = "Stanyshivka",
|
||||
Region = regions[1]
|
||||
}
|
||||
};
|
||||
@ -410,7 +410,7 @@ public sealed class DbSeeder : IDisposable
|
||||
var companyOwnerAccountCredentials =
|
||||
new (string Username, string Email)[]
|
||||
{
|
||||
("company_owner0", "company_owner0@email.com")
|
||||
("light_travel_owner", "light_travel_owner0@email.com")
|
||||
};
|
||||
|
||||
var companyOwnerAccounts = new List<Account>();
|
||||
@ -454,10 +454,10 @@ public sealed class DbSeeder : IDisposable
|
||||
{
|
||||
new Company()
|
||||
{
|
||||
Name = "Company 0",
|
||||
LegalAddress = "Country 0, Region 0, City 0, Address 0",
|
||||
ContactEmail = "company0@email.com",
|
||||
ContactPhoneNumber = "+000000000000",
|
||||
Name = "Light Travel",
|
||||
LegalAddress = "Ukraine, Kyiv Region, Kyiv, Address 0",
|
||||
ContactEmail = "light-travel@email.com",
|
||||
ContactPhoneNumber = "+38000000000",
|
||||
Account = companyOwnerAccounts[0]
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user