using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Business.PrintTemplateManagement.Dto; namespace Business.PrintTemplateManagement { public interface IPrintTemplateAppService : IApplicationService { Task Get(Guid id); Task> GetAll(GetPrintTemplateInputDto input); Task DataPost(CreateOrUpdatePrintTemplateDto input); Task Delete(List ids); Task CreatePdf(Guid id); } }