终端一体化运控平台
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.
 
 
 

35 lines
995 B

  1. using BPASmartClient.MorkCL.Model.DB;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MorkCL.Server
  8. {
  9. internal interface ISqlite : IServer
  10. {
  11. //主料
  12. bool AddIngredients(IngredientsTB mb);
  13. bool EditIngredients(IngredientsTB req);
  14. bool DelIngredients(string id);
  15. IngredientsTB GetIngredientsInfo(string id);
  16. List<IngredientsTB> GetIngredients();
  17. //辅料
  18. bool AddAccessories(AccessoriesTB mb);
  19. bool EditAccessories(AccessoriesTB req);
  20. bool DelAccessories(string id);
  21. AccessoriesTB GetAccessoriesInfo(string id);
  22. List<AccessoriesTB> GetAccessories();
  23. //调料
  24. bool AddSeasoning(SeasoningTB mb);
  25. bool EditSeasoning(SeasoningTB req);
  26. bool DelSeasoning(string id);
  27. SeasoningTB GetSeasoningInfo(string id);
  28. List<SeasoningTB> GetSeasoning();
  29. }
  30. }