Watchlist-project / movie-watchlist-backend

Backend API for movie watchlist website
1 stars 0 forks source link

Implement Watchlist RepositoryLayer #6

Closed Martenere closed 3 months ago

Martenere commented 3 months ago

The repository layer should consist of a IWatchlistRepositiry, and an implementation of that interface, WatchlistRepository

IWatchlistRepository should have all CRUD operations

//CRUD
public interface IWatchlistInterface(){

//function to retrieve all watchlist

//function to retrieve a watchlist by id

//function to update a watchlist by id

//function to delte a watchlist by id

}
LinusWillmont commented 3 months ago

PR merged