sozsoft-platform/api/src/Sozsoft.Platform.Application/DataSource/DataSourceAppService.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

21 lines
483 B
C#

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)
{
}
}