public string Get(ProjectDeletePhoto request) { if (Photo.DeletePhoto(request.photoname)) { return(new OkResponse("Delete Success!").ToString()); } else { return(new FailResponse("Delete Fail!").ToString()); } }