示例#1
0
 internal CallLogs(SwitchvoxClient client)
 {
     this.client = client;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Settings"/> class.
 /// </summary>
 /// <param name="client">The <see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal Settings(SwitchvoxClient client)
 {
     this.client = client;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CurrentCalls"/> class.
 /// </summary>
 /// <param name="client">The <see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal CurrentCalls(SwitchvoxClient client)
 {
     this.client = client;
 }
示例#4
0
        /// <summary>
        /// Initializes a new instance of the <see cref="IVR"/> class.
        /// </summary>
        /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
        internal IVR(SwitchvoxClient client)
        {
            this.client = client;

            GlobalVariables = new GlobalVariables(client);
        }
示例#5
0
        /// <summary>
        /// Initializes a new instance of the <see cref="Extensions"/> class.
        /// </summary>
        /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
        internal Extensions(SwitchvoxClient client)
        {
            this.client = client;

            Settings = new Settings(client);
        }
示例#6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GlobalVariables"/> class.
 /// </summary>
 /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal GlobalVariables(SwitchvoxClient client)
 {
     this.client = client;
 }
 internal CallQueuesUsers(SwitchvoxClient client)
 {
     this.client = client;
 }
示例#8
0
        internal Users(SwitchvoxClient client)
        {
            this.client = client;

            CallQueues = new CallQueuesUsers(client);
        }