48 lines
No EOL
983 B
C#
48 lines
No EOL
983 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 AprobacionController :BaseController
|
|
{
|
|
public ActionResult EnvioAprobacion()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult AnalizarCaso()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult CorregirCaratula()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ValidarCondicionesCliente()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
|
|
public ActionResult IncluirClienteSAP()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
|
|
public ActionResult HistoricoCaratula()
|
|
{
|
|
InitControllers();
|
|
return View();
|
|
}
|
|
}
|
|
} |