IOrgManager.cs 259 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace VCommon.VApplication.Authorization
  4. {
  5. public interface IOrgManager
  6. {
  7. bool Enabled { get; }
  8. IReadOnlyCollection<Guid> GetUserVisionOrg(Guid? tenantId, Guid? userId);
  9. }
  10. }