| 12345678910111213141516171819202122232425262728 |
- using Abp.MultiTenancy;
- namespace VberZero.Session;
- public class NullVzSession : IVzSession
- {
- public NullVzSession()
- {
- }
- public static NullVzSession Instance { get; } = new NullVzSession();
- public string GetClaimValueStr(string claimType)
- {
- return "";
- }
- public IDisposable Use(int? tenantId, long? userId)
- {
- throw new NotImplementedException();
- }
- public long? UserId { get; }
- public int? TenantId { get; }
- public MultiTenancySides MultiTenancySide { get; }
- public long? ImpersonatorUserId { get; }
- public int? ImpersonatorTenantId { get; }
- }
|