Beispiel #1
0
        public async Task <IActionResult> GetAll()
        {
            var kullanicis = await _kullaniciService.GetAllAsync();

            return(Ok(_mapper.Map <IEnumerable <KullaniciDto> >(kullanicis)));
        }