using System; using Sozsoft.Platform.Entities; using Microsoft.AspNetCore.Authorization; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Volo.Abp.Domain.Repositories; namespace Sozsoft.Platform.DataSources; [Authorize] public class DataSourceAppService : CrudAppService< DataSource, DataSourceDto, Guid, PagedAndSortedResultRequestDto> { public DataSourceAppService(IRepository repo) : base(repo) { } }