18 lines
356 B
C#
18 lines
356 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.Mvc;
|
|||
|
|
|
|||
|
|
namespace ULA.Cathay.ModuloMantenimiento.Controllers
|
|||
|
|
{
|
|||
|
|
public class ClaseCIIUController : BaseController
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public ActionResult Index()
|
|||
|
|
{
|
|||
|
|
InitControllers();
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|