Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs @ 75:96d7609f2e08
Agendar evento propuesto
author | nelopauselli |
---|---|
date | Mon, 23 May 2011 20:43:01 -0300 |
parents | c7264bfc4b71 |
children | 2adf55ea9199 |
rev | line source |
---|---|
26 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.ComponentModel.DataAnnotations; | |
4 using System.Web.Mvc; | |
5 | |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
26
diff
changeset
|
6 namespace AltNetHispano.Agendas.Web.Models |
26 | 7 { |
8 public class EventoIndexModel | |
9 { | |
10 public IEnumerable<EventoDto> ProximosEventos { get; set; } | |
11 } | |
12 | |
13 public class EventoNewModel | |
14 { | |
15 [Required(ErrorMessage = "debe ingresar el título")] | |
16 public string Titulo { get; set; } | |
17 | |
18 [Required(ErrorMessage = "debe ingresar el nombre del ponente")] | |
19 public string Ponente { get; set; } | |
20 | |
21 [Required(ErrorMessage = "debe ingresar la fecha del evento")] | |
22 public DateTime Fecha { get; set; } | |
70
c7264bfc4b71
agregado de properties en clase Evento (UrlInvitacion, UrlWiki, NumeroOrden)
jorge.rowies
parents:
34
diff
changeset
|
23 |
c7264bfc4b71
agregado de properties en clase Evento (UrlInvitacion, UrlWiki, NumeroOrden)
jorge.rowies
parents:
34
diff
changeset
|
24 public string UrlInvitacion { get; set; } |
26 | 25 } |
26 | |
27 public class EventoEditModel | |
28 { | |
29 [HiddenInput(DisplayValue = false)] | |
30 public string Id { get; set; } | |
31 | |
32 [Required(ErrorMessage = "debe ingresar el título")] | |
33 public string Titulo { get; set; } | |
34 | |
35 [Required(ErrorMessage = "debe ingresar el nombre del ponente")] | |
36 public string Ponente { get; set; } | |
37 | |
38 [Required(ErrorMessage = "debe ingresar la fecha del evento")] | |
39 public DateTime? Fecha { get; set; } | |
75 | 40 |
41 public string UrlInvitacion { get; set; } | |
42 } | |
26 | 43 |
44 | |
45 public class EventoDto | |
46 { | |
47 public string Id { get; set; } | |
48 public string Titulo { get; set; } | |
49 } | |
50 } |