26
|
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 } |