public HomeViewModel() { IsLoadingData = true; _news = new ObservableCollection<KurirNews>(); _comments = new ObservableCollection<Comment>(); _newsFactory = new KurirNewsRssFactory(); _commentFactory = new CommentFactory(); InitializeData(); }
public VestViewModel() { _commentFactory = new CommentFactory(); LoadComments(); }