Exemple #1
0
 private void ExecuteAddNew(object parameter)
 {
     Applications.Add(new ApplicationModel()
     {
         ID          = 0,
         Name        = string.Empty,
         Description = string.Empty,
         IndustryID  = 0,
         IsChecked   = false,
         IsEnabled   = true
     });
     ScrollToIndex = Applications.Count() - 1;
     CheckValidation();
 }