Exemple #1
0
 public SeoUrlKeyword[] GetObjectSeoUrlKeywords(string objectType, string objectId)
 {
     return(SeoUrlKeywords.Where(x => x.ObjectId == objectId && x.ObjectType == objectType).OrderBy(x => x.Language).ToArray());
 }
Exemple #2
0
 public SeoUrlKeyword[] GetSeoByIds(string[] ids)
 {
     return(SeoUrlKeywords.Where(x => ids.Contains(x.Id)).OrderBy(x => x.Keyword).ToArray());
 }