16 lines
413 B
C#
16 lines
413 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace VirtualTask.Controllers
|
|
{
|
|
public class DownloadController : Controller
|
|
{
|
|
public IActionResult Index()
|
|
{
|
|
SessionHelper helper = new SessionHelper(this);
|
|
string aziendaDownload = helper.GetStringValue("aziendaDownload");
|
|
ViewBag.aziendaDownload = aziendaDownload;
|
|
return View();
|
|
}
|
|
}
|
|
}
|