using iWare.Wms.Core; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; namespace iWare.Wms.Application { public interface IWmsLocationTypeService { Task Add(AddWmsLocationTypeInput input); Task Delete(DeleteWmsLocationTypeInput input); Task Get([FromQuery] QueryeWmsLocationTypeInput input); //Task> List([FromQuery] WmsLocationTypeInput input); Task> Page([FromQuery] WmsLocationTypeSearch input); Task Update(UpdateWmsLocationTypeInput input); } }