Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs @ 119:8fa58a79656a
Historico
author | Nelo@Kenia.neluz.int |
---|---|
date | Wed, 22 Jun 2011 09:49:07 -0300 |
parents | b74734a1a755 |
children | 6f1041301797 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs Wed Jun 22 09:32:59 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs Wed Jun 22 09:49:07 2011 -0300 @@ -7,87 +7,87 @@ namespace AltNetHispano.Agendas.Web.Models { public class EventoIndexModel - { - public IEnumerable<EventoDto> ProximosEventos { get; set; } - } + { + public IEnumerable<EventoDto> ProximosEventos { get; set; } + } - public class EventoNewModel - { - public EventoNewModel() - { - Tipos = EventoModelHelper.GetTiposEventos(); - } + public class EventoNewModel + { + public EventoNewModel() + { + Tipos = EventoModelHelper.GetTiposEventos(); + } - [Required] - public int Tipo { get; set; } + [Required] + public int Tipo { get; set; } - [Required] - public string Titulo { get; set; } + [Required] + public string Titulo { get; set; } - [Required] - public string Ponente { get; set; } + [Required] + public string Ponente { get; set; } - [Required] - public DateTime Fecha { get; set; } + [Required] + public DateTime Fecha { get; set; } - [Url] - public string UrlInvitacion { get; set; } + [Url] + public string UrlInvitacion { get; set; } - public IEnumerable<TipoEventoModel> Tipos { get; private set; } - } + public IEnumerable<TipoEventoModel> Tipos { get; private set; } + } - public class TipoEventoModel - { - public int TipoEvento { get; set; } - public string TipoEventoStr { get; set; } - } + public class TipoEventoModel + { + public int TipoEvento { get; set; } + public string TipoEventoStr { get; set; } + } - public class EventoEditModel - { - [HiddenInput(DisplayValue = false)] - public string Id { get; set; } + public class EventoEditModel + { + [HiddenInput(DisplayValue = false)] + public string Id { get; set; } - [Required] - public string Titulo { get; set; } + [Required] + public string Titulo { get; set; } - [Required] - public string Ponente { get; set; } + [Required] + public string Ponente { get; set; } - [Required] - public DateTime? Fecha { get; set; } + [Required] + public DateTime? Fecha { get; set; } - [Url] - public string UrlInvitacion { get; set; } - } + [Url] + public string UrlInvitacion { get; set; } + } - public class EventoAgendarModel - { - [HiddenInput(DisplayValue = false)] - public string Id { get; set; } + public class EventoAgendarModel + { + [HiddenInput(DisplayValue = false)] + public string Id { get; set; } - [Required] - public string Titulo { get; set; } + [Required] + public string Titulo { get; set; } - [Required] - public string Ponente { get; set; } + [Required] + public string Ponente { get; set; } - [Required] - public DateTime? Fecha { get; set; } + [Required] + public DateTime? Fecha { get; set; } - [Url] - public string UrlInvitacion { get; set; } - } + [Url] + public string UrlInvitacion { get; set; } + } - public class EventoDto - { - public string Id { get; set; } - public string Titulo { get; set; } - public string Estado { get; set; } - public string Fecha { get; set; } + public class EventoDto + { + public string Id { get; set; } + public string Titulo { get; set; } + public string Estado { get; set; } + public string Fecha { get; set; } - public bool PuedeAgendar { get; set; } - public bool PuedeModificar { get; set; } - public bool PuedeConfirmar { get; set; } - public bool PuedePublicar { get; set; } - } + public bool PuedeAgendar { get; set; } + public bool PuedeModificar { get; set; } + public bool PuedeConfirmar { get; set; } + public bool PuedePublicar { get; set; } + } } \ No newline at end of file