Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Controllers/PropuestaController.cs @ 37:90f0cab1febc
Sugerencia de resharper sobre optimización
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 17:04:03 -0300 |
parents | 475be11edf56 |
children | d149bfea3892 |
rev | line source |
---|---|
26 | 1 using System; |
2 using System.Linq; | |
3 using System.Web.Mvc; | |
4 using AltNetHispano.Agendas.Domain.Exceptions; | |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
27
diff
changeset
|
5 using AltNetHispano.Agendas.Factories; |
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
27
diff
changeset
|
6 using AltNetHispano.Agendas.Web.Models; |
26 | 7 |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
27
diff
changeset
|
8 namespace AltNetHispano.Agendas.Web.Controllers |
26 | 9 { |
10 public class PropuestaController : Controller | |
11 { | |
12 public ActionResult Index() | |
13 { | |
14 var agenda = AgendaFactory.GetAgenda(); | |
15 | |
27 | 16 var model = new PropuestaIndexModel |
17 { | |
18 Propuestas = from e in agenda.GetEventosPropuestos() | |
19 select new PropuestaDto { Id = e.Id.ToString(), Titulo = e.Titulo, Ponente = e.Ponente.Nombre } | |
20 }; | |
21 | |
22 return View(model); | |
26 | 23 } |
24 | |
25 [Authorize] | |
26 public ActionResult New() | |
27 { | |
28 return View(); | |
29 } | |
30 | |
31 [HttpPost] | |
32 [Authorize] | |
33 public ActionResult New(PropuestaNewModel model) | |
34 { | |
35 if (ModelState.IsValid) | |
36 { | |
37 var agenda = AgendaFactory.GetAgenda(); | |
38 | |
39 try | |
40 { | |
41 agenda.Proponer(model.Titulo, model.Ponente); | |
42 | |
27 | 43 return RedirectToAction("Index"); |
26 | 44 } |
45 catch (ValidationException ex) | |
46 { | |
47 ModelState.AddModelError("error", ex.ToString()); | |
48 } | |
49 } | |
50 return View(model); | |
51 } | |
52 | |
53 [Authorize] | |
54 public ActionResult Edit(string id) | |
55 { | |
56 var agenda = AgendaFactory.GetAgenda(); | |
57 var propuesta = agenda.GetEvento(new Guid(id)); | |
58 if (propuesta != null) | |
59 { | |
60 var model = new PropuestaEditModel | |
61 { | |
62 Id = id, | |
63 Titulo = propuesta.Titulo, | |
64 Ponente = propuesta.Ponente != null ? propuesta.Ponente.Nombre : string.Empty | |
65 }; | |
66 return View(model); | |
67 } | |
68 ModelState.AddModelError("error", "No se encontró el Propuesta que quiere modificar"); | |
69 return View(); | |
70 } | |
71 | |
72 [HttpPost] | |
73 [Authorize] | |
74 public ActionResult Edit(PropuestaEditModel model) | |
75 { | |
76 if (ModelState.IsValid) | |
77 { | |
78 var agenda = AgendaFactory.GetAgenda(); | |
79 | |
80 try | |
81 { | |
82 agenda.ModificarPropuesta(new Guid(model.Id), model.Titulo, model.Ponente); | |
83 | |
27 | 84 return RedirectToAction("Index"); |
26 | 85 } |
86 catch (ValidationException ex) | |
87 { | |
88 ModelState.AddModelError("error", ex.ToString()); | |
89 } | |
90 } | |
91 return View(model); | |
92 } | |
93 } | |
94 } |