view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 219:b9850b647a4e

Agregando alta de ponente durante la carga del evento
author nelopauselli
date Thu, 08 Sep 2011 11:22:10 -0300
parents a36a76bd6ec3
children
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);
	    void Delete(Persona persona);
	}
}