13 lines
336 B
C#
13 lines
336 B
C#
using Kurs.Settings.Localization;
|
|
using Volo.Abp.Application.Services;
|
|
|
|
namespace Kurs.Settings;
|
|
|
|
public abstract class SettingsAppService : ApplicationService
|
|
{
|
|
protected SettingsAppService()
|
|
{
|
|
LocalizationResource = typeof(SettingsResource);
|
|
ObjectMapperContext = typeof(SettingsApplicationModule);
|
|
}
|
|
}
|