comparison Agendas/trunk/src/Agendas.Google/IGEventDetail.cs @ 130:0ea32a748453

Se termina el publicador via el calendario de google, además se realizan las pruebas unitarias.
author alabra
date Sun, 10 Jul 2011 18:50:11 -0400
parents
children
comparison
equal deleted inserted replaced
129:a6d20ea228a5 130:0ea32a748453
1 using System;
2 using AltNetHispano.Agendas.Domain;
3
4 namespace AltNetHispano.Agendas.Google
5 {
6 public interface IGEventDetail
7 {
8 /// <summary>
9 /// Title of the Event
10 /// </summary>
11 string Title { get; }
12 /// <summary>
13 /// Place of the event
14 /// </summary>
15 string Location { get; }
16 /// <summary>
17 /// Description of the event
18 /// </summary>
19 string Summary { get; }
20 /// <summary>
21 /// Date and Time of event start
22 /// </summary>
23 DateTime StartEvent { get; }
24 /// <summary>
25 /// Date and Time of event end
26 /// </summary>
27 DateTime EndEvent { get; }
28
29 /// <summary>
30 /// Setting the details of the properties depending on the event.
31 /// </summary>
32 /// <param name="evento"></param>
33 void Generate(Evento evento);
34 }
35 }