comparison Agendas/trunk/src/Agendas.Domain/Repositories/IEventoRepository.cs @ 15:08b9e96132a5

Persistimos los eventos de la agenda
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:14:09 -0300
parents 05996fa19e04
children 41b283d27e3e
comparison
equal deleted inserted replaced
14:ed6d842abf42 15:08b9e96132a5
1 using System; 1 using System;
2 using System.Collections.Generic;
2 3
3 namespace AltNetHispano.Agendas.Domain.Repositories 4 namespace AltNetHispano.Agendas.Domain.Repositories
4 { 5 {
5 public interface IEventoRepository 6 public interface IEventoRepository
6 { 7 {
7 void Save(Evento evento); 8 void Save(Evento evento);
8 void Delete(Evento evento); 9 void Delete(Evento evento);
9 void Update(Evento evento); 10 void Update(Evento evento);
10 Evento Get(Guid vanId); 11 Evento Get(Guid vanId);
11 } 12 IList<Evento> GetEventosSinFecha();
13 IList<Evento> GetEventosConFecha();
14 }
12 15
13 public interface IAgendaRepository 16 public interface IAgendaRepository
14 { 17 {
15 void Save(Agenda agenda); 18 void Save(Agenda agenda);
16 void Delete(Agenda agenda); 19 void Delete(Agenda agenda);