Ejemplo n.º 1
0
        public async Task <ActionResult <bool> > CustomerExists(string customerId)
        {
            var customerExists = await _customersRepository.CustomerExits(customerId);

            return(Ok(customerExists));
        }