Ejemplo n.º 1
0
 internal CallLogs(SwitchvoxClient client)
 {
     this.client = client;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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);
        }
Ejemplo n.º 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);
        }
Ejemplo n.º 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;
 }
Ejemplo n.º 7
0
 internal CallQueuesUsers(SwitchvoxClient client)
 {
     this.client = client;
 }
Ejemplo n.º 8
0
        internal Users(SwitchvoxClient client)
        {
            this.client = client;

            CallQueues = new CallQueuesUsers(client);
        }