using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ITrashService { Task Delete(DeleteDocumentInput input); Task Page([FromQuery] DocumentInput input); }