using System; using System.Threading.Tasks; using Kurs.Platform.Charts.Dto; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; namespace Kurs.Platform.Charts.Select; public interface IChartsAppService : ICrudAppService< ChartDto, Guid, PagedAndSortedResultRequestDto, ChartEditDto> { Task GetByChartCodeAsync(ChartOptionsRequestDto request); Task GetChartOptionsAsync(ChartOptionsRequestDto request); Task DeleteChartJsonItem(ChartJsonItemRowDto request); Task UpdateChartJsonItem(ChartJsonItemRowDto model); }