Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Web/Models/PropuestaModel.cs @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -0300 |
parents | |
children | 475be11edf56 |
comparison
equal
deleted
inserted
replaced
25:e8d2be47a6b0 | 26:71b02443450a |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.ComponentModel.DataAnnotations; | |
4 using System.Web.Mvc; | |
5 | |
6 namespace Agendas.Web.Models | |
7 { | |
8 public class PropuestaIndexModel | |
9 { | |
10 public IEnumerable<PropuestaDto> Propuestas { get; set; } | |
11 } | |
12 | |
13 public class PropuestaNewModel | |
14 { | |
15 [Required(ErrorMessage = "debe ingresar el título")] | |
16 public string Titulo { get; set; } | |
17 | |
18 public string Ponente { get; set; } | |
19 } | |
20 | |
21 public class PropuestaEditModel | |
22 { | |
23 [HiddenInput(DisplayValue = false)] | |
24 public string Id { get; set; } | |
25 | |
26 [Required(ErrorMessage = "debe ingresar el título")] | |
27 public string Titulo { get; set; } | |
28 | |
29 public string Ponente { get; set; } | |
30 } | |
31 | |
32 | |
33 public class PropuestaDto | |
34 { | |
35 public string Id { get; set; } | |
36 public string Titulo { get; set; } | |
37 public string Ponente { get; set; } | |
38 } | |
39 } |