21 lines
814 B
C#
21 lines
814 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Wino.Domain.Interfaces;
|
|
|
|
namespace Wino.Services.Processors
|
|
{
|
|
public class ImapChangeProcessor : DefaultChangeProcessor, IImapChangeProcessor
|
|
{
|
|
public ImapChangeProcessor(IDatabaseService databaseService,
|
|
IFolderService folderService,
|
|
IMailService mailService,
|
|
IAccountService accountService,
|
|
IMimeFileService mimeFileService) : base(databaseService, folderService, mailService, accountService, mimeFileService)
|
|
{
|
|
}
|
|
|
|
public Task<IList<uint>> GetKnownUidsForFolderAsync(Guid folderId) => FolderService.GetKnownUidsForFolderAsync(folderId);
|
|
}
|
|
}
|