Ejemplo n.º 1
0
        public async Task <IActionResult> Get()
        {
            List <Spell> resultObj = await m_service.GetAll();

            if (resultObj == null)
            {
                return(NotFound());
            }

            return(Ok(resultObj));
        }