-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Innfører gradering mot tilsyn som eksplisitt reduksjon
- Loading branch information
Showing
3 changed files
with
109 additions
and
28 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
.../folketrygdloven/beregningsgrunnlag/regelmodell/fastsett/PleiepengerSyktBarnGrunnlag.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package no.nav.folketrygdloven.beregningsgrunnlag.regelmodell.fastsett; | ||
|
||
import java.math.BigDecimal; | ||
|
||
import no.nav.fpsak.tidsserie.LocalDateTimeline; | ||
|
||
public class PleiepengerSyktBarnGrunnlag extends YtelsesSpesifiktGrunnlag { | ||
|
||
private LocalDateTimeline<BigDecimal> tilsynsgraderingsprosent; | ||
|
||
public PleiepengerSyktBarnGrunnlag(LocalDateTimeline<BigDecimal> tilsynsgraderingsprosent) { | ||
super("PSB"); | ||
this.tilsynsgraderingsprosent = tilsynsgraderingsprosent; | ||
} | ||
|
||
public LocalDateTimeline<BigDecimal> getTilsynsgraderingsprosent() { | ||
if (tilsynsgraderingsprosent == null) { | ||
return LocalDateTimeline.empty(); | ||
} | ||
return tilsynsgraderingsprosent; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters