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<WmsContainerTypeOutput> Get([FromQuery] QueryeWmsContainerTypeInput input);
|
Task<List<WmsContainerTypeOutput>> List([FromQuery] WmsContainerTypeInput input);
|
Task<PageResult<WmsContainerTypeOutput>> Page([FromQuery] WmsContainerTypeSearch input);
|
Task Update(UpdateWmsContainerTypeInput input);
|
}
|
}
|