public static void DeleteCustomer(int customer_id)
 {
     string[] errors = new string[0];
     SLCustomers.ISLCustomers SLCustomers = new SLCustomers.SLCustomersClient();
     SLCustomers.DeleteCustomer(customer_id.ToString(), ref errors);
 }