This commit is contained in:
Nicolas Constant
2023-01-05 23:58:58 -05:00
parent 3460c72895
commit 5b32a9021f

View File

@ -3,10 +3,10 @@ using System.Threading.Tasks;
using BirdsiteLive.DAL.Contracts; using BirdsiteLive.DAL.Contracts;
using BirdsiteLive.DAL.Models; using BirdsiteLive.DAL.Models;
namespace BirdsiteLive.Pipeline.Processors.SubTasks; namespace BirdsiteLive.Pipeline.Processors.SubTasks
public class SendTweetsTaskBase
{ {
public class SendTweetsTaskBase
{
private readonly ISyncTweetsPostgresDal _syncTweetsPostgresDal; private readonly ISyncTweetsPostgresDal _syncTweetsPostgresDal;
#region Ctor #region Ctor
@ -28,4 +28,5 @@ public class SendTweetsTaskBase
}; };
await _syncTweetsPostgresDal.SaveTweetAsync(tweet); await _syncTweetsPostgresDal.SaveTweetAsync(tweet);
} }
}
} }