using Entity; using Shared; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Contextlib { public class DbFavoriteManager : IFavoriteService { private WTFContext _context; public DbFavoriteManager(WTFContext context) { _context = context ?? throw new ArgumentNullException(nameof(context), "Database context cannot be null."); } public async Task AddFavorite(int quoteid, int userId) { throw new NotImplementedException(); } public async Task RemoveAllFavoriteForQuote(int quoteId) { throw new NotImplementedException(); } public async Task RemoveAllFavoriteForUser(int userId) { throw new NotImplementedException(); } public async Task RemoveFavorite(int quoteid, int userId) { throw new NotImplementedException(); } } }