Example #1
0
 public OrganizationUserPermissions GetMyPermissions(string authToken, string orgId)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (orgId == null)
     {
         throw new ArgumentNullException("orgId");
     }
     return(diadocHttpApi.GetMyPermissions(authToken, orgId));
 }