-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat : setting FundHouse Name on initialization
- Loading branch information
1 parent
977c79a
commit 3c93ea9
Showing
6 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
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
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
6 changes: 3 additions & 3 deletions
6
src/main/java/com/learning/mfscreener/models/MFSchemeDTO.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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/* Licensed under Apache-2.0 2021-2022. */ | ||
/* Licensed under Apache-2.0 2021-2024. */ | ||
package com.learning.mfscreener.models; | ||
|
||
import java.io.Serializable; | ||
|
||
public record MFSchemeDTO(Long schemeCode, String payout, String schemeName, String nav, String date) | ||
public record MFSchemeDTO(String amc, Long schemeCode, String payout, String schemeName, String nav, String date) | ||
implements Serializable { | ||
public MFSchemeDTO withNavAndDate(String navValue, String navDate) { | ||
return new MFSchemeDTO(schemeCode(), payout(), schemeName(), navValue, navDate); | ||
return new MFSchemeDTO(amc(), schemeCode(), payout(), schemeName(), navValue, navDate); | ||
} | ||
} |
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