This commit is contained in:
Nicolas Constant 2023-01-05 23:58:58 -05:00
parent 3460c72895
commit 5b32a9021f
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 21 additions and 20 deletions

View File

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