public ActionResult AbortChunked(string id) { if (id is null or "") { return(BadRequest()); } _uploadService.AbortChunked(id); return(Ok()); }