public async Task <IActionResult> LoadSheet(string gridKey) { if (!await _sheetService.IsExist(gridKey)) { await _sheetService.InitSheet(gridKey); } var jArray = await _sheetService.LoadSheet(gridKey); return(Json(jArray.ToJson())); }