diff --git a/DosingSystem/ViewModel/RecipeControlViewModel.cs b/DosingSystem/ViewModel/RecipeControlViewModel.cs index 78e1dc23..6f8112fc 100644 --- a/DosingSystem/ViewModel/RecipeControlViewModel.cs +++ b/DosingSystem/ViewModel/RecipeControlViewModel.cs @@ -19,8 +19,8 @@ namespace BPASmartClient.DosingSystem.ViewModel { public class RecipeControlViewModel : NotifyBase { - public static ConcurrentQueue RecipeNames = new ConcurrentQueue(); - public static ObservableCollection StockStatus = new ObservableCollection(); + static ConcurrentQueue RecipeNames = new ConcurrentQueue(); + static ObservableCollection StockStatus = new ObservableCollection(); public RecipeControlViewModel() { StartCommand = new RelayCommand(RecipeIssued); @@ -239,7 +239,7 @@ namespace BPASmartClient.DosingSystem.ViewModel Json.Data.Recipes.ElementAt(recipIndex).IsEnable = true; Recipes.ElementAt(recipIndex).Are.Set(); } - + } } }