18 lines
389 B
C#
18 lines
389 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using Syc.Basic.Web.WMS.Localization;
|
|||
|
using Volo.Abp.Application.Services;
|
|||
|
|
|||
|
namespace Syc.Basic.Web.WMS;
|
|||
|
|
|||
|
/* Inherit your application services from this class.
|
|||
|
*/
|
|||
|
public abstract class WMSAppService : ApplicationService
|
|||
|
{
|
|||
|
protected WMSAppService()
|
|||
|
{
|
|||
|
LocalizationResource = typeof(WMSResource);
|
|||
|
}
|
|||
|
}
|