zs
2025-05-13 de4a3a2c1b39c128d4ecd23367db5fcbda957bdd
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);
    }
}