Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteUser(int id)
        {
            var userToDelete = _repo.GetUserSync(id);

            _repo.DeleteUser(userToDelete);

            if (await _repo.SaveAll())
            {
                return(Ok());
            }

            return(BadRequest("Failed to delete the user"));
        }