14 lines
399 B
Java
14 lines
399 B
Java
package de.tavolio.account;
|
|
|
|
import de.tavolio.account.dto.Account;
|
|
import jakarta.enterprise.context.ApplicationScoped;
|
|
|
|
@ApplicationScoped
|
|
public class AccountMapper
|
|
{
|
|
public Account map(AccountEntity accountEntity)
|
|
{
|
|
return new Account(accountEntity.getId(), accountEntity.getFirstname(), accountEntity.getLastname(), accountEntity.getEmail(), accountEntity.getStatus());
|
|
}
|
|
}
|