2024-06-02 21:35:03 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2024-07-21 05:45:02 +02:00
|
|
|
|
using Wino.Domain.Interfaces;
|
2024-06-02 21:35:03 +02:00
|
|
|
|
|
2024-07-21 05:45:02 +02:00
|
|
|
|
namespace Wino.Services.Processors
|
2024-06-02 21:35:03 +02:00
|
|
|
|
{
|
|
|
|
|
|
public class GmailChangeProcessor : DefaultChangeProcessor, IGmailChangeProcessor
|
|
|
|
|
|
{
|
|
|
|
|
|
public GmailChangeProcessor(IDatabaseService databaseService, IFolderService folderService, IMailService mailService, IAccountService accountService, IMimeFileService mimeFileService) : base(databaseService, folderService, mailService, accountService, mimeFileService)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Task MapLocalDraftAsync(string mailCopyId, string newDraftId, string newThreadId)
|
|
|
|
|
|
=> MailService.MapLocalDraftAsync(mailCopyId, newDraftId, newThreadId);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|