42 lines
890 B
C#
42 lines
890 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace ULA.Cathay.Credito.Controllers
|
|
{
|
|
public class CaratulaCreditoController : BaseController
|
|
{
|
|
|
|
public ActionResult Index()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult FacilidadesCaratula()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult IdentificarRenovacion()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
//public ActionResult GestionRenovacion()
|
|
//{
|
|
// InitControllers();
|
|
// return View();
|
|
//}
|
|
|
|
//public ActionResult ExpedienteAnalisis()
|
|
//{
|
|
// InitControllers();
|
|
// return View();
|
|
//}
|
|
|
|
}
|
|
}
|