public FormOneDataControl() { InitializeComponent(); myCollectionViewSource.DataSource = StudentViewModel.GetStudents(); // or myCollectionViewSource.ItemsSource? Crap, can't pull the CollectionViewSource properties from raw memory... }
// GET public IActionResult GetAll() { return(View(StudentViewModel.GetStudents(_repository))); }
public IEnumerable <StudentViewModel> GetAllApi() { return((StudentViewModel.GetStudents(_repository)).ToList()); }
public FormOneDataControl() { InitializeComponent(); myCollectionViewSource.DataSource = StudentViewModel.GetStudents(); }