sozsoft-platform/api/src/Sozsoft.Platform.Application/DataSource/DataSourceAppService.cs

22 lines
483 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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<DataSource, Guid> repo) : base(repo)
{
}
}