Beispiel #1
0
        public async Task <IActionResult> GetAllBusinessCategories()
        {
            var result = await repository.GetAllBusinessCategories();

            logger.LogInformation(result.Message);

            return(Ok(result));
        }