public TopicItemViewModel(Topic topic) { this.topic = topic; Question = topic.Question; CreatedAt = topic.CreatedAt.ToString("ddd MM HH:mm"); User = topic.User.Name; }
public void SelectTopic(Topic topic) { RequestNavigate<TopicDetailsViewModel>(new { topic = JsonConvert.SerializeObject(topic) }); }