Example #1
0
        public void Execute(object parameter)
        {
            DonkeyViewModel donkey = _donkeyListPresenter.AddBatch("Dummy Batch");

            _donkeyListViewModel.Batches.Add(donkey);
        }
Example #2
0
 public void DeleteBatch(DonkeyViewModel donkey)
 {
     _donkeyService.Delete(donkey.Id);
 }