| 1234567891011121314151617181920212223242526 |
- 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<SysState, int> 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;
- }
|