STUB remaining v7 corebizobjects

This commit is contained in:
2020-05-01 21:26:10 +00:00
parent 251f84d2af
commit 894b06c5ec
3 changed files with 128 additions and 4 deletions

View File

@@ -236,7 +236,7 @@ namespace AyaNova.Biz
MatchingObjects = MatchingObjects.Take(searchParameters.MaxResults).ToList();
//Sort and group the matching objects list in return order
//Customer.OrderBy(c => c.LastName).ThenBy(c => c.FirstName)
//zCzustomer.OrderBy(c => c.LastName).ThenBy(c => c.FirstName)
var OrderedMatchingObjects = MatchingObjects.OrderBy(x => x.ObjectType).ThenByDescending(x => x.ObjectId);

View File

@@ -28,7 +28,7 @@ namespace AyaNova.Biz
public static string NormalizeTag(string inObj)
{
//Must be lowercase per rules
//This may be naive when we get international customers but for now supporting utf-8 and it appears it's safe to do this with unicode
//This may be naive when we get international cust omers but for now supporting utf-8 and it appears it's safe to do this with unicode
inObj = inObj.ToLowerInvariant();
//No spaces in tags, replace with dashes
inObj = inObj.Replace(" ", "-");