コード例 #1
0
 public YoutubeIntegration(IBrothershipUnitOfWork unitOfWork, IYoutubeAuthClient youtubeAuthClient, IYoutubeDataClient youtubeDataClient)
 {
     _unitOfWork        = unitOfWork;
     _youtubeAuthClient = youtubeAuthClient;
     _youtubeDataClient = youtubeDataClient;
 }
コード例 #2
0
 public YoutubeIntegration()
 {
     _unitOfWork        = new BrothershipUnitOfWork();
     _youtubeAuthClient = new YoutubeAuthClient();
     _youtubeDataClient = new YoutubeDataClient();
 }