Пример #1
0
 public PeopleController(ITMDbClient tmdbClient)
 {
     _tmdbClient = tmdbClient ?? throw new ArgumentNullException("tmdbClient");
 }
Пример #2
0
 public MoviesController(ITMDbClient client)
 {
     _client = client ?? throw new ArgumentNullException("client");
 }