public IActionResult Index() { // Get Fund List JObject json = new JObject(); JArray fundList = sqlService.AssetTransactionGet("Create Fund", json); // Get Investor List JArray invList = sqlService.AssetTransactionGet("Create Investor", json); ViewBag.fundList = fundList; ViewBag.invList = invList; return(View()); }