public CatalogController(IMovieResource moviesService, ICheckOutResource checkoutService)
 {
     _movies   = moviesService ?? throw new ArgumentNullException();
     _checkout = checkoutService ?? throw new ArgumentNullException();
 }
示例#2
0
 public UserController(ICheckOutResource checkout)
 {
     _checkout = checkout;
 }