using iWare.Wms.Core; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; namespace iWare.Wms.Application { public interface IWmsContainerService { Task Add(AddWmsContainerInput input); Task Delete(DeleteWmsContainerInput input); Task Get([FromQuery] QueryeWmsContainerInput input); Task List([FromQuery] WmsContainerInput input); Task> Page([FromQuery] WmsContainerSearch input); Task Update(UpdateWmsContainerInput input); } }