Beispiel #1
0
 /// Common Variables
 ///
 public ProductViewModel() : base(nameof(ProductViewModel))
 {
     Categories = new ObservableCollection <Category>(CategoryTable.GetAll());
     Products   = new ObservableCollection <Product>(ProductTable.GetAll());
 }