I want to use in my MVC Controller StimulSoft,I use this code:
public ActionResult CardReport(CardReportViewModel model)
{
IAccount account;
if (model.AccountId != null)
account = _accountManager.Get(model.AccountId.Value);
else
account = _accountManager.Get(project, model.AccountCode);
model.AccountId = account.Id;
model.AccountCode = account.Code;
var rptt = new StiReport();
rptt.Dictionary.Synchronize();
rptt.RegBusinessObject("test", model);
rptt.Show();
return View(model);
But I do not see anything,I do not use anything in my cshtml file
In .cshtml file we must to use this code: