Exemplo n.º 1
0
        public async Task <IActionResult> GetAllCustomers()
        {
            var customers = await _repository.GetAllCustomersAsync();

            return(Ok(customers));
        }