public async Task <IActionResult> Index(IFormFile fileUpload) { if (fileUpload?.Length > 0 && _storageService.IsImage(fileUpload)) { await _storageService.UploadImageToBlobStorage(fileUpload); } return(RedirectToAction(nameof(Index))); }