Skip to content

Commit

Permalink
fjerner konstruktør parameter på default konstruktør fordi det gjør a…
Browse files Browse the repository at this point in the history
…t deserialisering feiler (#570)
  • Loading branch information
qtips authored Nov 5, 2024
1 parent 36791b5 commit 29a62fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public class TilkommetInntektsforholdDto {
public TilkommetInntektsforholdDto(AktivitetStatus aktivitetStatus,
String arbeidsgiverIdentifikator,
String arbeidsforholdId,
Integer bruttoInntektPrÅr, Integer tilkommetInntektPrÅr,
Integer bruttoInntektPrÅr,
Integer tilkommetInntektPrÅr,
Boolean skalRedusereUtbetaling) {
this.aktivitetStatus = aktivitetStatus;
this.arbeidsgiverIdentifikator = arbeidsgiverIdentifikator;
Expand All @@ -64,8 +65,7 @@ public TilkommetInntektsforholdDto(AktivitetStatus aktivitetStatus,
this.skalRedusereUtbetaling = skalRedusereUtbetaling;
}

public TilkommetInntektsforholdDto(Integer tilkommetInntektPrÅr) {
this.tilkommetInntektPrÅr = tilkommetInntektPrÅr;
public TilkommetInntektsforholdDto() {
}

public AktivitetStatus getAktivitetStatus() {
Expand Down

0 comments on commit 29a62fb

Please sign in to comment.