sozsoft-platform/api/modules/Sozsoft.Languages/Sozsoft.Languages.Application.Contracts/ILanguageAppService.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

15 lines
345 B
C#

using System;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
namespace Sozsoft.Languages;
public interface ILanguageAppService : ICrudAppService<
LanguageDto,
Guid,
PagedAndSortedResultRequestDto>
{
Task<LanguageDto> GetLanguageByCultureNameAsync(string CultureName);
}