view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 126:6012f2becf97

Se agrega instalación de nuget package para el calendario de google.
author alabra
date Tue, 28 Jun 2011 23:35:22 -0400
parents db4b1e2cae49
children 2dbb15f4510f
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);
	}
}