TFS_ANTIGUO/SInCathay/ULA.Cathay.ModuloMantenimiento/Controllers/CondicionesGeneralesCreditoController.cs

18 lines
374 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ULA.Cathay.ModuloMantenimiento.Controllers
{
public class CondicionesGeneralesCreditoController : BaseController
{
public ActionResult Index()
{
InitControllers();
return View();
}
}
}