comparison Agendas/trunk/src/Agendas.Google/IGCalendarAdapter.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 34b2f85aecab
children
comparison
equal deleted inserted replaced
129:a6d20ea228a5 130:0ea32a748453
8 public interface IGCalendarAdapter 8 public interface IGCalendarAdapter
9 { 9 {
10 /// <summary> 10 /// <summary>
11 /// Method to insert new calendar event 11 /// Method to insert new calendar event
12 /// </summary> 12 /// </summary>
13 /// <param name="title">Title of the Event</param> 13 /// <param name="gEventDetail">Detail of the event</param>
14 /// <param name="startEvent">Date and Time of event start</param> 14 /// <param name="message">Detail of the execution of the method</param>
15 /// <param name="endEvent">Date and Time of event end</param> 15 bool CreateEvent(IGEventDetail gEventDetail, out string message);
16 /// <param name="location">Place of the event</param>
17 /// <param name="summary">Description of the event</param>
18 void CreateEvent(string title, DateTime startEvent, DateTime endEvent, String location, String summary);
19 /// <summary> 16 /// <summary>
20 /// Method to delete calendar event, searching by 17 /// Method to delete calendar event, searching by
21 /// start and end date and time the event. 18 /// start and end date and time the event.
22 /// </summary> 19 /// </summary>
23 /// <param name="startEvent">Date and Time of event start to search</param> 20 /// <param name="startEvent">Date and Time of event start to search</param>
24 /// <param name="endEvent">Date and Time of event end to search</param> 21 /// <param name="endEvent">Date and Time of event end to search</param>
25 void DeleteEvent(DateTime startEvent, DateTime endEvent); 22 /// <param name="message">Detail of the execution of the method</param>
23 bool DeleteEvent(DateTime startEvent, DateTime endEvent, out string message);
26 } 24 }
27 } 25 }