Cheesebaron.HorizontalListView.Core.ViewModels.TestCollectionViewModel.TestCollectionViewModel C# (CSharp) Method

TestCollectionViewModel() public method

public TestCollectionViewModel ( ) : System.Collections.ObjectModel
return System.Collections.ObjectModel
        public TestCollectionViewModel()
        {
            TestViewModels = new ObservableCollection<TestViewModel>
                                 {
                                     new TestViewModel(),
                                     new TestViewModel(),
                                     new TestViewModel(),
                                     new TestViewModel(),
                                     new TestViewModel(),
                                 };
        }
    }