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

17 lines
346 B
C#
Raw Permalink 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 AbogadosController : BaseController
{
public ActionResult Index()
{
InitControllers();
return View();
}
}
}