// GET: Registrado
        public ActionResult Index()
        {
            NotificacionGenericaCEN        NotificacionGenericaCEN = new NotificacionGenericaCEN();
            IList <NotificacionGenericaEN> listNotigeEN            = NotificacionGenericaCEN.ReadAll(0, -1);
            IEnumerable <NotificacionGenericaViewModel> listreg    = new AssemblerNotificacionGenerica().ConvertListENToModel(listNotigeEN);

            return(View(listreg));
        }
        // GET: Registrado/Create
        public ActionResult Create()
        {
            NotificacionViewModel noti = new NotificacionViewModel();

            NotificacionGenericaCEN        notificacionGenerica      = new NotificacionGenericaCEN();
            IList <NotificacionGenericaEN> listaNotificacionGenerica = notificacionGenerica.ReadAll(0, -1);

            ViewData["listaNotificacionGenerica"] = listaNotificacionGenerica;

            return(View(noti));
        }