コード例 #1
0
ファイル: DiadocApi.cs プロジェクト: ava57r/diadocsdk-csharp
 public CounteragentList GetCounteragents(string authToken, string myOrgId, string counteragentStatus, string afterIndexKey, string query = null, int?pageSize = null)
 {
     if (string.IsNullOrEmpty(authToken))
     {
         throw new ArgumentNullException("authToken");
     }
     if (string.IsNullOrEmpty(myOrgId))
     {
         throw new ArgumentNullException("myOrgId");
     }
     return(diadocHttpApi.GetCounteragents(authToken, myOrgId, counteragentStatus, afterIndexKey, query, pageSize));
 }