コード例 #1
0
 public GithubReviewMessageProcessor(ICommandParser commandParser, IReviewApi review, string defaultUser = null, string defaultRepo = null)
 {
     m_CommandParser = commandParser;
     m_ReviewApi     = review;
     m_DefaultUser   = defaultUser;
     m_DefaultRepo   = defaultRepo;
 }
コード例 #2
0
 public ReviewServiceImpl(IReviewApi reviewApiImplementation) : base(reviewApiImplementation)
 {
 }
コード例 #3
0
 internal ReviewService([NotNull] IReviewApi reviewApiImplementation)
 {
     ReviewApiImplementation = reviewApiImplementation ??
                               throw new ArgumentNullException(nameof(reviewApiImplementation));
 }