diff Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 3:5f007e266509

code cleanup
author nelopauselli
date Sat, 22 Jan 2011 20:23:50 -0300
parents 6bb4ab4c0611
children 475be11edf56
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs	Sat Jan 22 20:21:31 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs	Sat Jan 22 20:23:50 2011 -0300
@@ -5,14 +5,22 @@
 {
 	public class TwitterPublicador : IPublicador, IRecordador
 	{
+		#region IPublicador Members
+
 		public void Publicar(Evento evento)
 		{
 			throw new NotImplementedException();
 		}
 
+		#endregion
+
+		#region IRecordador Members
+
 		public void Recordar(Evento evento)
 		{
 			throw new NotImplementedException();
 		}
+
+		#endregion
 	}
-}
+}
\ No newline at end of file