using System; using MasaBlazorApp3.Pojo; namespace MasaBlazorApp3.DataAccess.Dao { public interface IChannelListDao { public Task> GetAllChannelList(int DrawerType, string drugName, int? take, int? skip); public Task> GetChannelStockByDrugId(string DrugId); public Task> GetChannelListByDrawerNo(int DrawerNo); public Task> GetChannelStockByDrawerNo(int DrawerNo, int Quantity = 0); public Task> GetAllDrugChannelStock(); public Task> GetAllDrugChannelList(); public Task DrawerOperationFinish(List Stocks, int type); public Task UnBind(string id); public Task Bind(ChannelStock Stock); Task> GetAllChannelListWithDrug(int DrawerType, string drugName, int? take, int? skip); Task> GetChannelStockByDrawerNoWithDrawers(int DrawerNo, int Quantity = 0); //盘点 public Task DrawerCheckFinish(List Stocks); //抽屉获取库存数据--药品绑定 Task> GetChannelStockByBiaoDing(int DrawerNo, int Quantity=0); } }