public IActionResult List(DataSourceRequest command)
        {
            var customerAttributes = _customerAttributeViewModelService.PrepareCustomerAttributes();
            var gridModel          = new DataSourceResult
            {
                Data  = customerAttributes.ToList(),
                Total = customerAttributes.Count()
            };

            return(Json(gridModel));
        }