Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ILuPermissionsProvider.cs 485B

12345678910111213
  1. using Luticate2.Utils.Dbo.Result;
  2. namespace Luticate2.Auth.Interfaces.Permissions
  3. {
  4. public interface ILuPermissionsProvider
  5. {
  6. LuResult<bool?> GetPermissionValue(string permissionName, string srcEntityType, object srcEntity,
  7. string dstEntityType, object dstEntity);
  8. LuResult<bool?> GetPermissionEffectiveValue(string permissionName, string srcEntityType, object srcEntity,
  9. string dstEntityType, object dstEntity);
  10. }
  11. }