Пример #1
0
        public async Task <IActionResult> GetAll()
        {
            var categories = await _likeService.GetAllAsync();

            //automapper: dataları birbirine dönüştürür
            //
            return(Ok(categories));
        }