/// <summary> /// Add one customer to db. /// </summary> /// <param name="customer">The customer object containing customer data to add to db.</param> /// <returns>An int representing the id of the customer that was added to db.</returns> public int AddCustomer(Customer customer) { return(api.AddCustomer(customer)); }