zs
2025-05-08 93d77e4c9cbe4d5321891a69de577cdebc54213a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using CMS.Plugin.HIAWms.Domain.Shared.Localization;
using Volo.Abp.Application.Services;
 
namespace CMS.Plugin.HIAWms.Application;
 
/// <summary>
/// Inherit your application services from this class.
/// </summary>
public abstract class CMSPluginAppService : ApplicationService
{
    /// <summary>
    /// Initializes a new instance of the <see cref="CMSPluginAppService"/> class.
    /// </summary>
    protected CMSPluginAppService()
    {
        ObjectMapperContext = typeof(CMSPluginApplicationModule);
        LocalizationResource = typeof(HIAWmsResource);
    }
}