Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteContact(int id)
        {
            //var contact = await _context.Contacts.FindAsync(id);

            var data = await _context.DeleteThisContact(id);

            if (data == false)
            {
                return(NotFound());
            }
            return(Ok());
        }