comparison Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 16:ed29ceb025a9

ops, se pasó un return false hardcode.
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:16:44 -0300
parents 08b9e96132a5
children 8ed4a806ebe0
comparison
equal deleted inserted replaced
15:08b9e96132a5 16:ed29ceb025a9
1 using System; 1 using System;
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.Linq;
4 using AltNetHispano.Agendas.Domain.Exceptions; 3 using AltNetHispano.Agendas.Domain.Exceptions;
5 using AltNetHispano.Agendas.Domain.Repositories; 4 using AltNetHispano.Agendas.Domain.Repositories;
6 5
7 namespace AltNetHispano.Agendas.Domain 6 namespace AltNetHispano.Agendas.Domain
8 { 7 {
64 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>(); 63 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>();
65 } 64 }
66 65
67 private static bool NoEstaAutenticado(ISeguridad seguridad) 66 private static bool NoEstaAutenticado(ISeguridad seguridad)
68 { 67 {
69 return false;
70 return seguridad == null || seguridad.GetPrincipal() == null || seguridad.GetPrincipal().Identity == null 68 return seguridad == null || seguridad.GetPrincipal() == null || seguridad.GetPrincipal().Identity == null
71 || string.IsNullOrWhiteSpace(seguridad.GetPrincipal().Identity.Name); 69 || string.IsNullOrWhiteSpace(seguridad.GetPrincipal().Identity.Name);
72 } 70 }
73 71
74 public void ModificarEvento(Guid id, string titulo, string ponente, DateTime? fecha) 72 public void ModificarEvento(Guid id, string titulo, string ponente, DateTime? fecha)