コード例 #1
0
 /// <summary>
 /// Creates a success response.
 /// </summary>
 /// <param name="languageAndProficiencyView">languageAndProficiencyView view model.</param>
 /// <returns>Response.</returns>
 public ProfileResponse(LanguageAndProficiencyView languageAndProficiencyView) : this(true, ClientMessageConstant.Success, languageAndProficiencyView)
 {
 }
コード例 #2
0
 private ProfileResponse(bool success, string message, LanguageAndProficiencyView languageAndProficiencyView) : base(success, message)
 {
     LanguageAndProficiencyView = languageAndProficiencyView;
 }