Example #1
0
 public void SetPostForm(MessagePostModel model, bool showPostForm)
 {
     this.PostForm = model;
     page.IsPostFormVisible = showPostForm;
 }
Example #2
0
 public void SetPostForm(MessagePostModel model, bool navigateToReplyView)
 {
     this.viewModelWrapper.SetPostForm(model, navigateToReplyView);
     model.WhileBusy = NotifyProgress;
     model.OnFailure = NotifyFailureAndTryAgain;
     model.OnSuccess = NotifySuccessAndGoBack;
 }