public void DeleteCustomer(string id) { api.DeleteCustomer((Convert.ToInt32(id))); }
public void DeleteCustomer(int id) { api.DeleteCustomer(id); }