diff Agendas/trunk/src/Agendas.Web/DataProviders.cs @ 145:e6e6bfb1da9e

En la edición de un evento (nuevo, propuesta, modificación), el ponente se selecciona desde un combo.
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 11:42:24 -0300
parents a5ff4de4a1d3
children 734d3f0853bf
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/DataProviders.cs	Mon Aug 01 10:25:23 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/DataProviders.cs	Mon Aug 01 11:42:24 2011 -0300
@@ -1,6 +1,8 @@
-using System.Collections.Generic;
+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
@@ -12,5 +14,15 @@
             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)};
+        }
+
     }
 }
\ No newline at end of file