示例#1
0
        public string DeleteUser(int id)
        {
            if (!userService.Delete(id))
            {
                return("User is not deleted");
            }

            return("User is deleted");
        }