Skip to content

Commit

Permalink
Legger til medmor i familierelasjonsmodellen i mapper fra DTO til sce… (
Browse files Browse the repository at this point in the history
#1188)

Legger til medmor i familierelasjonsmodellen i mapper fra DTO til scenariomodell
  • Loading branch information
espenwaaga authored Jul 12, 2023
1 parent 7fd3173 commit 915431f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public enum Relasjon {
SAMBOER,
BARN,
FAR,
MOR
MOR,
MEDMOR
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ private static FamilierelasjonModell.Rolle tilRolle(FamilierelasjonModellDto.Rel
case BARN -> FamilierelasjonModell.Rolle.BARN;
case FAR -> FamilierelasjonModell.Rolle.FARA;
case MOR -> FamilierelasjonModell.Rolle.MORA;
case MEDMOR -> FamilierelasjonModell.Rolle.MMOR;
};
}

Expand Down

0 comments on commit 915431f

Please sign in to comment.