Esempio n. 1
0
 public void MyAction()
 {
     foreach (var datum in _model.GetDataSet())
     {
         DataSet.Add(datum);
     }
 }
Esempio n. 2
0
        public ViewModelAll()
        {
            _canExecute = true;
            _model      = new ModelClass();

            var getdata = _model.GetDataSet();

            DataList = getdata;
        }
Esempio n. 3
0
        private void MyReload()
        {
            var getdata = _model.GetDataSet();

            DataList = getdata;
        }