2025-05-06 06:45:49 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Volo.Abp;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Languages;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
[IntegrationService]
|
|
|
|
|
|
public interface ILanguageKeyIntegrationService
|
|
|
|
|
|
{
|
|
|
|
|
|
Task CreateKeysForSettingsAsync(
|
|
|
|
|
|
string NameKey,
|
|
|
|
|
|
string DescriptionKey,
|
|
|
|
|
|
string MainGroupKey,
|
|
|
|
|
|
string SubGroupKey
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
Task DeleteKeysForSettingsAsync(
|
|
|
|
|
|
string NameKey,
|
|
|
|
|
|
string DescriptionKey,
|
|
|
|
|
|
string MainGroupKey,
|
|
|
|
|
|
string SubGroupKey);
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|