Esempio n. 1
0
        public async Task <IActionResult> GetAllStates(int countryId)
        {
            var states = await repository.GetAllStates(countryId);

            logger.LogInformation(states.Message);

            return(Ok(states));
        }