Interface IUserMapper


public interface IUserMapper
Mapper interface for mapping between UserDTO and User entity. It provides a method to convert a UserDTO to a User entity.
  • Method Summary

    Modifier and Type
    Method
    Description
    callofproject.dev.data.project.entity.User
    toUser(UserDTO userDTO)
    Maps a UserDTO to a User entity.
  • Method Details

    • toUser

      callofproject.dev.data.project.entity.User toUser(UserDTO userDTO)
      Maps a UserDTO to a User entity.
      Parameters:
      userDTO - The UserDTO to map.
      Returns:
      The mapped User entity.