view Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs @ 112:0bca45e1e664

Pantalla de Perfil donde se puede asociar la cuenta de twitter al usuario existente
author Nelo@Kenia.neluz.int
date Sat, 11 Jun 2011 01:20:59 -0300
parents 80c22175c9b5
children 53bcd338542b
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 EventoDto
  {
    public string Id { get; set; }
    public string Titulo { get; set; }
    public DateTime Fecha { get; set; }
  }
}