using iWare.Wms.Core; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; namespace iWare.Wms.Application { public interface IWmsContainerTypeService { Task Add(AddWmsContainerTypeInput input); Task Delete(DeleteWmsContainerTypeInput input); Task Get([FromQuery] QueryeWmsContainerTypeInput input); Task> List([FromQuery] WmsContainerTypeInput input); Task> Page([FromQuery] WmsContainerTypeSearch input); Task Update(UpdateWmsContainerTypeInput input); } }