终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

20 行
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. }