comparison 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
comparison
equal deleted inserted replaced
144:a2b14da4902f 145:e6e6bfb1da9e
1 using System.Collections.Generic; 1 using System;
2 using System.Collections.Generic;
2 using System.ComponentModel.DataAnnotations; 3 using System.ComponentModel.DataAnnotations;
3 using System.Web.Mvc; 4 using System.Web.Mvc;
4 using DataAnnotationsExtensions; 5 using DataAnnotationsExtensions;
5 6
6 namespace AltNetHispano.Agendas.Web.Models 7 namespace AltNetHispano.Agendas.Web.Models
12 public int TipoEvento { get; set; } 13 public int TipoEvento { get; set; }
13 14
14 [Required] 15 [Required]
15 public string Titulo { get; set; } 16 public string Titulo { get; set; }
16 17
17 public string Ponente { get; set; } 18 [UIHint("Ponente")]
19 public Guid Ponente { get; set; }
18 20
19 [Url] 21 [Url]
20 public string UrlInvitacion { get; set; } 22 public string UrlInvitacion { get; set; }
21 } 23 }
22 } 24 }