using CMS.Plugin.PipeLineLems.Application.Contracts.Dtos.MyTestEntityNames;
using Volo.Abp.Application.Services;
namespace CMS.Plugin.PipeLineLems.Application.Contracts.Services;
///
/// MyTestEntityName应用服务
///
public interface IMyTestEntityNameAppService : ICrudAppService
{
///
/// Clones the asynchronous.
///
/// The ids.
///
Task> CloneAsync(IEnumerable ids);
///
/// Deletes the many asynchronous.
///
/// The ids.
///
Task DeleteManyAsync(IEnumerable ids);
///
/// Adjusts the sort asynchronous.
///
/// The identifier.
/// The sort.
///
Task AdjustSortAsync(Guid id, int sort);
///
/// Imports the asynchronous.
///
/// The input.
///
Task ImportAsync(MyTestEntityNamesImportModel input);
///
/// Exports the asynchronous.
///
/// The input.
///
Task<(Dictionary Sheets, string FileName)> ExportAsync(GetMyTestEntityNamesInput input);
}