From c239dd6b15ec24d53e9052627048624e2b4a5b94 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 2 Jun 2020 22:19:18 +0000 Subject: [PATCH] --- server/AyaNova/util/Seeder.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/AyaNova/util/Seeder.cs b/server/AyaNova/util/Seeder.cs index 6cbf5894..737d234b 100644 --- a/server/AyaNova/util/Seeder.cs +++ b/server/AyaNova/util/Seeder.cs @@ -592,7 +592,7 @@ namespace AyaNova.Util u.UserType = userType; u.EmployeeNumber = "A-" + (454 + SeededUserCount).ToString() + "-Y"; - u.Notes = Fake.Lorem.Sentence();//Fake.Lorem.Paragraph(2); + u.Notes = Fake.Lorem.Sentence(null,5);//Fake.Lorem.Paragraph(2); //TODO: After have USER and HEADOFFICE and VENDOR, if usertype is subcontractor or client or headoffice it needs to set a corresponding user's parent org record id to go with it //use provided tags or generate them if (tags == null) @@ -785,7 +785,7 @@ namespace AyaNova.Util UserType randomUserType = (UserType)values.GetValue(random.Next(values.Length)); o.UserType = randomUserType; - o.Notes = f.Lorem.Sentence(); + o.Notes = f.Lorem.Sentence(null,5); o.Tags = RandomTags(f); @@ -793,7 +793,7 @@ namespace AyaNova.Util //RANDOM CUSTOM FIELD DATA var c1 = DateUtil.UniversalISO8661Format(f.Date.Between(DateTime.Now.AddYears(-1), DateTime.Now.AddYears(1))); - var c2 = f.Lorem.Sentence(); + var c2 = f.Lorem.Sentence(null,5); var c3 = f.Random.Int(1, 99999999); var c4 = f.Random.Bool().ToString().ToLowerInvariant(); var c5 = f.Random.Decimal();