view Agendas/trunk/src/Agendas.Domain/Repositories/IPersonaRepository.cs @ 288:a6037c6c88d8

Se soluciona bug #198 Bug: Summary incorrecto en Google Calendar. Se parametriza la hora en el mensaje.
author user@MECHUQUE
date Mon, 30 Jan 2012 01:52:47 -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);
	}
}