view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 144:a2b14da4902f

Alta y modificación de ponentes (personas)
author Nelo@Guinea.neluz.int
date Mon, 01 Aug 2011 10:25:23 -0300
parents 2dbb15f4510f
children a36a76bd6ec3
line wrap: on
line source

using System;
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);
	    Persona Get(Guid id);
	}
}