comparison Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 209:a36a76bd6ec3

Se soluciona ticket 173. Se agrega eliminación de personas siempre y cuando no esté asociada a ninguna van.
author alabra
date Wed, 24 Aug 2011 19:27:30 -0300
parents a2b14da4902f
children
comparison
equal deleted inserted replaced
208:607384590bf8 209:a36a76bd6ec3
9 Persona GetByNombre(string ponenteNombre); 9 Persona GetByNombre(string ponenteNombre);
10 void Save(Persona persona); 10 void Save(Persona persona);
11 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username); 11 Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username);
12 Persona GetByTwitter(string username); 12 Persona GetByTwitter(string username);
13 Persona Get(Guid id); 13 Persona Get(Guid id);
14 void Delete(Persona persona);
14 } 15 }
15 } 16 }