Beispiel #1
0
        public async Task <UserDto> GetByIdAsync(int id)
        {
            var user = await Uow.Users.GetByIdAsync(id);

            return(user == null
                ? null
                : _userConverter.ToUserDto(user));
        }