comparison Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 1:6bb4ab4c0611

Tests de Crud para repositorio de Vans
author nelopauselli
date Sat, 22 Jan 2011 19:50:32 -0300
parents 3f7dbb633b71
children 5f007e266509
comparison
equal deleted inserted replaced
0:3f7dbb633b71 1:6bb4ab4c0611
1 using System; 1 using System;
2 using AltNetHispano.Agendas.Domain; 2 using AltNetHispano.Agendas.Domain;
3 3
4 namespace Agendas.Twitter 4 namespace Agendas.Twitter
5 { 5 {
6 public class TwitterPublicador : IPublicador 6 public class TwitterPublicador : IPublicador, IRecordador
7 { 7 {
8 public void Publicar(Evento evento) 8 public void Publicar(Evento evento)
9 { 9 {
10 throw new NotImplementedException(); 10 throw new NotImplementedException();
11 } 11 }
12
13 public void Recordar(Evento evento)
14 {
15 throw new NotImplementedException();
16 }
12 } 17 }
13 } 18 }