示例#1
0
 public static void setTestGetRecommendationsForUser(string communityId, string userId, RecommendationActionType action, string objectCategory, RecommendationActionType contextAction, string contextObjectId, RecommendationChannel channel, int maxResults, RecommendationCollection result)
 {
     Implementation.setTestGetRecommendationsForUser(communityId, userId, action, objectCategory, contextAction, contextObjectId, channel, maxResults, result);
 }
示例#2
0
 public static void setTestGetRecommendationForUser(string communityId, string userId, RecommendationActionType action, string objectId, RecommendationCollection result)
 {
     Implementation.setTestGetRecommendationForUser(communityId, userId, action, objectId, result);
 }
示例#3
0
 public static void rejectRecommendationForUser(string communityId, string userId, RecommendationActionType action, RecommendedObjectType objectEnum)
 {
     Implementation.rejectRecommendationForUser(communityId, userId, action, objectEnum);
 }
示例#4
0
 public static RecommendationCollection getRecommendationsForUser(string communityId, string userId, RecommendationActionType action, string objectCategory, RecommendationActionType contextAction, string contextObjectId, RecommendationChannel channel, int maxResults)
 {
     return(Implementation.getRecommendationsForUser(communityId, userId, action, objectCategory, contextAction, contextObjectId, channel, maxResults));
 }
示例#5
0
 public static RecommendationCollection getRecommendationsForUser(string communityId, string userId, RecommendationActionType contextAction, string contextObjectId, int maxResults)
 {
     return(Implementation.getRecommendationsForUser(communityId, userId, contextAction, contextObjectId, maxResults));
 }
示例#6
0
 public static RecommendationCollection getRecommendationForUser(string communityId, string userId, RecommendationActionType action, string objectId)
 {
     return(Implementation.getRecommendationForUser(communityId, userId, action, objectId));
 }