Пример #1
0
        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");
        }
Пример #2
0
        /// <inheritdoc/>
        public async Task DeleteEventById(string id)
        {
            await calendarAPI.DeleteEventById(id);

            return;
        }
Пример #3
0
 public async Task DeleteEventsById()
 {
     await CalendarService.DeleteEventById("test id");
 }
Пример #4
0
 public async Task DeleteEventByIdTest()
 {
     string deleteId = "delete_event";
     await CalendarService.DeleteEventById(deleteId);
 }