Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using Microsoft.AspNetCore.Mvc;
  4. using MyMDB.Data.EFCore;
  5. using MyMDB.Models;
  6.  
  7. namespace MyMDB.Controllers
  8. {
  9. [Route("api/[controller]")]
  10. [ApiController]
  11. public class MoviesController : MyMDBController<Movie, EfCoreMovieRepository>
  12. {
  13. public MoviesController(EfCoreMovieRepository repository) : base(repository)
  14. {
  15.  
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement