public async Task <List <Customer> > GetAsync() { try { return(await _customerRespository.GetCustomersAsync(10, "ASC")); } catch (Exception ex) { throw new ArgumentException(ex.Message); } }