コード例 #1
0
        public async Task Should_Get_Single_Common_User()
        {
            var commonUser = await _service.GetAsync(1);

            commonUser.Email.ShouldBe("*****@*****.**");
        }
コード例 #2
0
 public async Task <CommonUserDto> GetAsync(long id)
 {
     return(await _service.GetAsync(id));
 }