comparison Agendas/trunk/src/Agendas.Web/DataProviders.cs @ 158:734d3f0853bf

Manejando configuración de los publicadores con una sección propia en los .config Agregando la opción de habilitar / deshabilitar un publicador
author nelopauselli
date Fri, 05 Aug 2011 16:55:18 -0300
parents e6e6bfb1da9e
children 222362c29416
comparison
equal deleted inserted replaced
157:f17252543cbf 158:734d3f0853bf
21 return from p in personas.GetAll() 21 return from p in personas.GetAll()
22 orderby p.Nombre 22 orderby p.Nombre
23 select 23 select
24 new SelectListItem {Text = p.Nombre, Value = p.Id.ToString(), Selected = p.Id.Equals(id)}; 24 new SelectListItem {Text = p.Nombre, Value = p.Id.ToString(), Selected = p.Id.Equals(id)};
25 } 25 }
26
27 } 26 }
28 } 27 }