using Abp.Authorization; using Abp.Domain.Repositories; using Abp.Runtime.Caching; using VberAdmin.Authorization; using VberZero.AppService.States; using VberZero.BaseSystem; namespace VberAdmin.BaseSystem.States; [AbpAuthorize] public class StateAppService : StateAppServiceBase, IStateAppService { public StateAppService(ICacheManager cacheManager, IRepository repository) : base(cacheManager, repository) { } protected override string GetPermissionName => PermissionNames.VberSystemMgStateMgQuery; protected override string GetAllPermissionName => PermissionNames.VberSystemMgStateMgQuery; //protected override string CreatePermissionName => PermissionNames.VberSystemMgStateMgCreate; protected override string UpdatePermissionName => PermissionNames.VberSystemMgStateMgUpdate; //protected override string DeletePermissionName => PermissionNames.VberSystemMgStateMgDelete; }