public async Task Should_Get_Single_Common_User() { var commonUser = await _service.GetAsync(1); commonUser.Email.ShouldBe("*****@*****.**"); }
public async Task <CommonUserDto> GetAsync(long id) { return(await _service.GetAsync(id)); }