public IActionResult DeleteStudent(string id)
        {
            var response = _context.DeleteStudent(id);

            if (response != null)
            {
                return(Ok(response));
            }
            return(NotFound("No student to remove"));
        }