예제 #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));
 }