Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 109:6bd9be78caa0
Merge
author | Nelo@Kenia.neluz.int |
---|---|
date | Tue, 07 Jun 2011 23:21:07 -0300 |
parents | 80c22175c9b5 |
children | b74734a1a755 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs Tue Jun 07 23:07:06 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs Tue Jun 07 23:21:07 2011 -0300 @@ -5,41 +5,51 @@ namespace AltNetHispano.Agendas.Web.Models { - public class PropuestaIndexModel + public class PropuestaIndexModel + { + public IEnumerable<PropuestaDto> Propuestas { get; set; } + } + + public class PropuestaNewModel + { + public PropuestaNewModel() { - public IEnumerable<PropuestaDto> Propuestas { get; set; } + Tipos = EventoModelHelper.GetTiposEventos(); } - public class PropuestaNewModel - { - [Required] - public string Titulo { get; set; } + [Required] + public int Tipo { get; set; } - public string Ponente { get; set; } + [Required] + public string Titulo { get; set; } - [Url] - public string UrlInvitacion { get; set; } - } + public string Ponente { get; set; } - public class PropuestaEditModel - { - [HiddenInput(DisplayValue = false)] - public string Id { get; set; } + [Url] + public string UrlInvitacion { get; set; } + + public IEnumerable<TipoEventoModel> Tipos { get; private set; } + } - [Required] - public string Titulo { get; set; } + public class PropuestaEditModel + { + [HiddenInput(DisplayValue = false)] + public string Id { get; set; } - public string Ponente { get; set; } + [Required] + public string Titulo { get; set; } + + public string Ponente { get; set; } - [Url] - public string UrlInvitacion { get; set; } - } - + [Url] + public string UrlInvitacion { get; set; } + } + - public class PropuestaDto - { - public string Id { get; set; } - public string Titulo { get; set; } - public string Ponente { get; set; } - } + public class PropuestaDto + { + public string Id { get; set; } + public string Titulo { get; set; } + public string Ponente { get; set; } + } } \ No newline at end of file