using System; using System.Collections.Generic; using System.Text; using WinIn.FasterZ.AuthSiteCenter.Localization; using Volo.Abp.Application.Services; namespace WinIn.FasterZ.AuthSiteCenter; /* Inherit your application services from this class. */ public abstract class AuthSiteCenterAppService : ApplicationService { protected AuthSiteCenterAppService() { LocalizationResource = typeof(AuthSiteCenterResource); } }