Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/DataProviders.cs @ 148:c99636fbdc5f
Ticket 155: Agregar Nro de Orden, Tipo y Duración real en la pantalla de Histórico, similar a como es la página actual en altnethispano.org.
Pendiente: Falta que tome la duración cargada.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 02 Aug 2011 23:05:50 -0300 |
parents | e6e6bfb1da9e |
children | 734d3f0853bf |
line wrap: on
line source
using System; using System.Collections.Generic; using System.Linq; using System.Web.Mvc; using AltNetHispano.Agendas.Factories; using AltNetHispano.Agendas.Web.Models; namespace AltNetHispano.Agendas.Web { public static class DataProviders { public static IEnumerable<SelectListItem> GetTiposEvento(this HtmlHelper helper) { return from t in EventoModelHelper.GetTiposEventos() select new SelectListItem {Text = t.TipoEventoStr, Value = t.TipoEvento.ToString()}; } public static IEnumerable<SelectListItem> GetPonentes(this HtmlHelper helper, Guid id) { var personas = AgendaFactory.GetPersonaService(); return from p in personas.GetAll() orderby p.Nombre select new SelectListItem {Text = p.Nombre, Value = p.Id.ToString(), Selected = p.Id.Equals(id)}; } } }