84 lines
No EOL
1.7 KiB
C#
84 lines
No EOL
1.7 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Configuration;
|
|
using System.Web.Mvc;
|
|
|
|
|
|
|
|
namespace ULA.Cathay.Credito.Controllers
|
|
{
|
|
public class IngresoClienteController : BaseController
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult GenerarPropuesta()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult RequisitosBasicos()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult CriteriosSeleccion()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
|
|
public ActionResult DatosCriteriosSeleccion()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ElaborarOfertaDetallada()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ElaborarOferta()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ActualizarOperacionesCliente()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult EnvioPropuesta()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult GestionesVarias()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ControlVisitas()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
}
|
|
} |