14 lines
260 B
C#
14 lines
260 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using System.Globalization;
|
|||
|
|
|||
|
namespace ComputerHardwareStoreREST.Controllers
|
|||
|
{
|
|||
|
public class ReportsController : Controller
|
|||
|
{
|
|||
|
public IActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|