/// <summary> /// Invoke view component /// </summary> /// <returns> /// A task that represents the asynchronous operation /// The task result contains the view component result /// </returns> public async Task <IViewComponentResult> InvokeAsync() { if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageCustomers) || !await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageOrders) || !await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageReturnRequests) || !await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageProducts)) { return(Content(string.Empty)); } //a vendor doesn't have access to this report if (await _workContext.GetCurrentVendorAsync() != null) { return(Content(string.Empty)); } //prepare model var model = await _commonModelFactory.PrepareCommonStatisticsModelAsync(); return(View(model)); }