This commit is contained in:
2020-12-03 20:38:46 +00:00
parent d23a6a29b6
commit 0b7610be86
6 changed files with 17 additions and 11 deletions

View File

@@ -614,9 +614,9 @@ namespace AyaNova.Util
User u = new User();
u.Active = active;
// var BogusPerson = new Bogus.Person();
u.Name = Uniquify(new Bogus.Person().FullName);
u.Name = Uniquify(Fake.Name.FullName());
var bogusEmail = u.Name.ToLowerInvariant().Replace(" ", "_") + "@example.net";
if (login != null)
{
@@ -864,8 +864,8 @@ namespace AyaNova.Util
o.Tags = RandomTags();
o.Contact = Fake.Person.FullName;
o.ContactNotes = Fake.Person.FullName;
o.Contact = Fake.Name.FullName();
o.ContactNotes = Fake.Name.FullName();
o.AccountNumber = Fake.Finance.Account();
o.Latitude = (decimal)Fake.Address.Latitude();
o.Longitude = (decimal)Fake.Address.Longitude();