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 System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using BPASmart.Model;
-
- namespace BPASmart.Model
- {
- public interface IRecipeMaterials
- {
- Task<bool> AddAsync(RecipeMaterials recipeMaterials);
- Task<bool> AddRangeAsync(RecipeMaterials[] recipeMaterials);
- Task<bool> UpdateAsync(RecipeMaterials recipeMaterials);
- Task<bool> DeleteAsync(string ID);
- Task<List<RecipeMaterials>> GetData();
- }
- }
|