/// <returns>A task that represents the asynchronous operation</returns>
        public virtual async Task <IActionResult> Providers(TaxProviderSearchModel searchModel)
        {
            if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageTaxSettings))
            {
                return(await AccessDeniedDataTablesJson());
            }

            //prepare model
            var model = await _taxModelFactory.PrepareTaxProviderListModelAsync(searchModel);

            return(Json(model));
        }