Example #1
0
 public async Task <Result> SuspendCustomer(string CustomerId, SuspendCustomerParams data) => await _avOperation.SuspendCompanyAsync(CustomerId, data);
Example #2
0
        public Result SuspendCustomer(string CustomerId, SuspendCustomerParams data)
        {
            var op = new STaaSOperation();

            return(op.SuspendCompany(CustomerId, data));
        }