Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.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 | c57ca21064f2 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs Mon Aug 01 10:25:23 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs Mon Aug 01 11:42:24 2011 -0300 @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using System; +using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using DataAnnotationsExtensions; @@ -14,7 +15,8 @@ [Required] public string Titulo { get; set; } - public string Ponente { get; set; } + [UIHint("Ponente")] + public Guid Ponente { get; set; } [Url] public string UrlInvitacion { get; set; }