using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Warehouse.Controllers.Config { [RoutePrefix("Products")] public class ProductsnController : Controller { [Route("Products")] public ActionResult ProductsInfo() { return View("~/Views/Config/Products.cshtml"); } } }