コード例 #1
0
 public IActionResult GetRandomNumber(bool isAuthId)
 {
     return(Ok(_consumerAppRepository.GetRandomNumber(isAuthId)));
 }
コード例 #2
0
        public void GetRandomNumberForTrue()
        {
            var result = _consumerAppRespository.GetRandomNumber(true);

            Assert.NotNull(result);
        }