Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using MyMDB.Models;
  2. using MyMDB.Models.EFCore;
  3.  
  4. namespace MyMDB.Data.EFCore
  5. {
  6. public class EfCoreMovieRepository : EfCoreRepository<Movie, MyMDBContext>
  7. {
  8. public EfCoreMovieRepository(MyMDBContext context) : base(context)
  9. {
  10.  
  11. }
  12. // We can add new methods specific to the movie repository here in the future
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement