Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Controllers/HistoricoController.cs @ 174:3c70b0d8bd69
Ticket 159: Corrección temporal. Al obtener el nombre se remplazan los caracteres erróneos por los que corresponde.
author | juanjose.montesdeocaarbos |
---|---|
date | Mon, 08 Aug 2011 06:17:19 -0300 |
parents | 4e4b758ab744 |
children | 2d02adb79322 |
line wrap: on
line source
using System.Linq; using System.Web.Mvc; using AltNetHispano.Agendas.Factories; using AltNetHispano.Agendas.Web.Models; namespace AltNetHispano.Agendas.Web.Controllers { public class HistoricoController : Controller { public ActionResult Index() { var agenda = AgendaFactory.GetAgenda(); var model = new HistoricoIndexModel { Items = from e in agenda.GetHistorico() orderby e.Fecha select new HistoricoDto { Id = e.Id.ToString(), Titulo = e.Titulo, Fecha = e.Fecha.HasValue ? e.Fecha.Value.ToShortDateString() : string.Empty, Wiki = e.UrlWiki, Ponente = e.Ponente.Nombre, Numero = e.NumeroOrden.ToString(), Tipo = e.Tipo.ToString(), Duracion = e.Duracion.ToString(@"hh\:mm") } }; return View(model); } } }