22 lines
455 B
C#
22 lines
455 B
C#
using System.Threading.Tasks;
|
|
using Volo.Abp;
|
|
|
|
namespace Erp.Languages;
|
|
|
|
[IntegrationService]
|
|
public interface ILanguageKeyIntegrationService
|
|
{
|
|
Task CreateKeysForSettingsAsync(
|
|
string NameKey,
|
|
string DescriptionKey,
|
|
string MainGroupKey,
|
|
string SubGroupKey
|
|
);
|
|
|
|
Task DeleteKeysForSettingsAsync(
|
|
string NameKey,
|
|
string DescriptionKey,
|
|
string MainGroupKey,
|
|
string SubGroupKey);
|
|
}
|
|
|