public async Task DeleteEventsById() { ICalendar mockCalendarService = new MockCalendarService("test token"); IServiceManager serviceManager = new ServiceManager(new SkillConfiguration()); ICalendar calendarService = serviceManager.InitCalendarService(mockCalendarService, EventSource.Microsoft); await calendarService.DeleteEventById("test id"); }
/// <inheritdoc/> public async Task DeleteEventById(string id) { await calendarAPI.DeleteEventById(id); return; }
public async Task DeleteEventsById() { await CalendarService.DeleteEventById("test id"); }
public async Task DeleteEventByIdTest() { string deleteId = "delete_event"; await CalendarService.DeleteEventById(deleteId); }