终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
453 B

  1. using BPASmart.Model;
  2. using BPASmartClient.Helper;
  3. using Microsoft.Toolkit.Mvvm.ComponentModel;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPASmart.RecipeManagement.ViewModel
  10. {
  11. public class MainControl:ObservableObject
  12. {
  13. public MainControl()
  14. {
  15. Json<LocalMaterails>.Read();
  16. Json<LocalRecipes>.Read();
  17. }
  18. }
  19. }