public async Task <Customer> GetCustomer(int id, bool includeCreditInfo) { if (id <= 0) { throw new ArgumentOutOfRangeException(nameof(id)); } return(await _CustomerApi.GetCustomer(id, includeCreditInfo)); }