public ProcessAccountSynchronisation(SyncAccount syncAccount, ITwitterService twitterService, IMastodonService mastodonService, ISyncAccountsRepository syncAccountsRepository)
 {
     this._syncAccount       = syncAccount;
     _twitterService         = twitterService;
     _mastodonService        = mastodonService;
     _syncAccountsRepository = syncAccountsRepository;
 }
 public TwittootFacade(ITwitterService twitterService, IMastodonService mastodonService, ISyncAccountsRepository syncAccountsRepository, ProcessAccountSyncFactory processAccountSyncFactory)
 {
     _twitterService            = twitterService;
     _mastodonService           = mastodonService;
     _syncAccountsRepository    = syncAccountsRepository;
     _processAccountSyncFactory = processAccountSyncFactory;
 }
 public ProcessAccountSyncFactory(ITwitterService twitterService, IMastodonService mastodonService, ISyncAccountsRepository syncAccountsRepository)
 {
     _twitterService         = twitterService;
     _mastodonService        = mastodonService;
     _syncAccountsRepository = syncAccountsRepository;
 }