public FileResult Read([FromQuery] string fileKey) { var dto = _fileAppService.Read(fileKey); return(this.File(dto.Stream, GetContentType(dto))); }