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