29 lines
547 B
C#
29 lines
547 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using NPOI.SS.UserModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using TempTask.WebEntry.Tools;
|
|
|
|
namespace TempTask.WebEntry.Controllers
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class HomeController : Controller
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
}
|
|
}
|