Exemple #1
0
 /// <summary>
 /// Add the user's JellyVisionQuiz response.
 /// </summary>
 /// <param name="response">The JellyVisionQuiz response model.</param>
 /// <returns>bool</returns>
 public bool AddJellyVisionQuizResponse(JellyVisionQuizResponseContract response)
 {
     using (var client = new SaltServiceProxy())
     {
         return(client.Execute(proxy => proxy.AddJellyVisionQuizResponse(response)));
     }
 }
Exemple #2
0
 public bool AddJellyVisionQuizResponse(JellyVisionQuizResponseContract response)
 {
     return(AddJellyVisionQuizResponseResponse);
 }
Exemple #3
0
 /// <summary>
 /// Adds the JellyVision Quiz response.
 /// </summary>
 /// <param name="response">The JellyVision Quiz response to save.</param>
 /// <returns></returns>
 public bool AddJellyVisionQuizResponse(JellyVisionQuizResponseContract response)
 {
     return(_surveyService.Resolve().AddJellyVisionQuizResponse(response.ToDomainObject <JellyVisionQuizResponseContract, JellyVisionQuizResponse>()));
 }