2024-11-10 23:28:25 +01:00
|
|
|
|
using System;
|
2024-11-27 03:01:14 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Threading;
|
2024-11-10 23:28:25 +01:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Microsoft.Kiota.Abstractions;
|
|
|
|
|
|
using Wino.Core.Domain.Entities.Shared;
|
2024-11-27 03:01:14 +01:00
|
|
|
|
using Wino.Core.Domain.Interfaces;
|
2024-11-10 23:28:25 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Synchronizers.Calendar
|
|
|
|
|
|
{
|
2024-11-27 03:01:14 +01:00
|
|
|
|
public class OutlookCalendarSynchronizer : BaseSynchronizer<RequestInformation>
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
2024-11-27 03:01:14 +01:00
|
|
|
|
public OutlookCalendarSynchronizer(MailAccount account) : base(account)
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-27 03:01:14 +01:00
|
|
|
|
public override Task ExecuteNativeRequestsAsync(List<IRequestBundle<RequestInformation>> batchedRequests, CancellationToken cancellationToken = default)
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|