Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/Agenda.cs @ 37:90f0cab1febc
Sugerencia de resharper sobre optimización
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 17:04:03 -0300 |
parents | 65bbf1ab2b24 |
children | 3c5657d99727 |
comparison
equal
deleted
inserted
replaced
36:65bbf1ab2b24 | 37:90f0cab1febc |
---|---|
73 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>(); | 73 return _eventosRepository.GetEventosConFecha() ?? new List<Evento>(); |
74 } | 74 } |
75 | 75 |
76 private static bool NoEstaAutenticado(ISeguridad seguridad) | 76 private static bool NoEstaAutenticado(ISeguridad seguridad) |
77 { | 77 { |
78 return seguridad == null || seguridad.GetPrincipal() == null || seguridad.GetPrincipal().Identity == null | 78 return seguridad == null || seguridad.GetPrincipal() == null |
79 || string.IsNullOrWhiteSpace(seguridad.GetPrincipal().Identity.Name); | 79 || string.IsNullOrWhiteSpace(seguridad.GetPrincipal().Identity.Name); |
80 } | 80 } |
81 | 81 |
82 public void ModificarEvento(Guid id, string titulo, string ponenteNombre, DateTime? fecha) | 82 public void ModificarEvento(Guid id, string titulo, string ponenteNombre, DateTime? fecha) |
83 { | 83 { |