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.
|
- using BPASmartClient.MorkCL.Model.DB;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkCL.Server
- {
- internal interface ISqlite : IServer
- {
- //主料
- bool AddIngredients(IngredientsTB mb);
- bool EditIngredients(IngredientsTB req);
- bool DelIngredients(string id);
- IngredientsTB GetIngredientsInfo(string id);
- List<IngredientsTB> GetIngredients();
-
- //辅料
- bool AddAccessories(AccessoriesTB mb);
- bool EditAccessories(AccessoriesTB req);
- bool DelAccessories(string id);
- AccessoriesTB GetAccessoriesInfo(string id);
- List<AccessoriesTB> GetAccessories();
-
-
- //调料
- bool AddSeasoning(SeasoningTB mb);
- bool EditSeasoning(SeasoningTB req);
- bool DelSeasoning(string id);
- SeasoningTB GetSeasoningInfo(string id);
- List<SeasoningTB> GetSeasoning();
- }
- }
|