This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/DataAccessLayers/BirdsiteLive.DAL.Postgres/DataAccessLayers/CachedTweetsPostgresDal.cs
2020-07-05 22:57:05 -04:00

34 lines
959 B
C#

using System.Threading.Tasks;
using BirdsiteLive.DAL.Contracts;
using BirdsiteLive.DAL.Postgres.DataAccessLayers.Base;
using BirdsiteLive.DAL.Postgres.Settings;
using BirdsiteLive.DAL.Postgres.Tools;
using Tweetinvi.Models;
namespace BirdsiteLive.DAL.Postgres.DataAccessLayers
{
public class CachedTweetsPostgresDal : PostgresBase, ICachedTweetsDal
{
#region Ctor
public CachedTweetsPostgresDal(PostgresSettings settings, PostgresTools tools) : base(settings)
{
}
#endregion
public Task AddTweetAsync(long tweetId, int userId, ITweet tweet)
{
throw new System.NotImplementedException();
}
public Task<ITweet> GetTweetAsync(long tweetId)
{
throw new System.NotImplementedException();
}
public Task DeleteTweetAsync(long tweetId)
{
throw new System.NotImplementedException();
}
}
}