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

20 lines
545 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using BPASmart.Model;
  8. namespace BPASmart.Model
  9. {
  10. public interface IRecipeMaterials
  11. {
  12. Task<bool> AddAsync(RecipeMaterials recipeMaterials);
  13. Task<bool> AddRangeAsync(RecipeMaterials[] recipeMaterials);
  14. Task<bool> UpdateAsync(RecipeMaterials recipeMaterials);
  15. Task<bool> DeleteAsync(string ID);
  16. Task<List<RecipeMaterials>> GetData();
  17. }
  18. }