view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 143:2dbb15f4510f

Asociar Twitter a Persona existente
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 09:41:29 -0300
parents db4b1e2cae49
children a2b14da4902f
line wrap: on
line source

using System.Collections.Generic;

namespace AltNetHispano.Agendas.Domain.Repositories
{
	public interface IPersonaRepository
	{
		IList<Persona> GetAll();
		Persona GetByNombre(string ponenteNombre);
		void Save(Persona persona);
		Cuenta GetCuenta(IdentityProviderEnum identityProvider, string username);
	    Persona GetByTwitter(string username);
	}
}