public CatalogController(IMovieResource moviesService, ICheckOutResource checkoutService)
 {
     _movies   = moviesService ?? throw new ArgumentNullException();
     _checkout = checkoutService ?? throw new ArgumentNullException();
 }
Exemplo n.º 2
0
 public UserController(ICheckOutResource checkout)
 {
     _checkout = checkout;
 }