Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs @ 130:0ea32a748453
Se termina el publicador via el calendario de google, además se realizan las pruebas unitarias.
author | alabra |
---|---|
date | Sun, 10 Jul 2011 18:50:11 -0400 |
parents | 8fa58a79656a |
children | 6f1041301797 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Web.Mvc; using DataAnnotationsExtensions; namespace AltNetHispano.Agendas.Web.Models { public class EventoIndexModel { public IEnumerable<EventoDto> ProximosEventos { get; set; } } public class EventoNewModel { public EventoNewModel() { Tipos = EventoModelHelper.GetTiposEventos(); } [Required] public int Tipo { get; set; } [Required] public string Titulo { get; set; } [Required] public string Ponente { get; set; } [Required] public DateTime Fecha { get; set; } [Url] public string UrlInvitacion { get; set; } public IEnumerable<TipoEventoModel> Tipos { get; private 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; } [Required] public string Titulo { get; set; } [Required] public string Ponente { get; set; } [Required] public DateTime? Fecha { get; set; } [Url] public string UrlInvitacion { get; set; } } public class EventoAgendarModel { [HiddenInput(DisplayValue = false)] public string Id { get; set; } [Required] public string Titulo { get; set; } [Required] public string Ponente { get; set; } [Required] public DateTime? Fecha { 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 bool PuedeAgendar { get; set; } public bool PuedeModificar { get; set; } public bool PuedeConfirmar { get; set; } public bool PuedePublicar { get; set; } } }