DEM 2 1.0.607 Release Notes
Released 29.06.2022
This release continues to improve existing features while introducing a few significant feature contributions.
What's new
Statements
In order to add the possiblity to filter statements by date for Halk, we needed to expand some methods from ITransactionService and StatementViewModel with some optional parameters. If you have an override and see some errors regarding this methods, just add this changes to your classes and you're good to go.
In ITransactionService implementation:
public override async Task<bool> GetStatementsDataAsync(string accountNumber, Action<RangedObservableCollection<DataObject<Statement>>> onData = null, string currency = null, DateTime? dateFrom = null, DateTime? dateTo = null)
{
... the code you have ...
}
protected override async Task<List<Statement>> LoadStatements(string accountNumber, string currency = null, string year = null, DateTime? dateFrom = null, DateTime? dateTo = null)
{
... the code you have ...
}
In StatementsViewModel override:
protected override async Task<bool> GetStatementsData(string currency = null, DateTime? dateFrom = null, DateTime? dateTo = null)
{
... the code you have ...
}
POBA
- We expanded CreditTransfer model of Payment API with the following properties:
[DataMember(Name = "ultimate-debtor", EmitDefaultValue = false)]
public string UltimateDebtor { get; set; }
[DataMember(Name = "ultimate-creditor", EmitDefaultValue = false)]
public string UltimateCreditor { get; set; }
- CrossBorderTransfer model of Payment API has also been expanded, in addition to 2 fields above, we added:
[DataMember(Name = "ultimate-debtor-address", EmitDefaultValue = false)]
public Address UltimateDebtorAddress { get; set; }
[DataMember(Name = "ultimate-creditor-address", EmitDefaultValue = false)]
public Address UltimateCreditorAddress { get; set; }
Halk
- Design changes
- Other changes and fixes
SME - Bug fixed on SharePoint External
- 216, 396
Latest application on AppCentar
Halk - SxS MToken - SC 24x7 UAT
Halk SME - SxS MToken - SC 24x7 UAT
DEM V2 - Staging - SxS on Halk test
DEM V2 - Demo - SxS on Halk test
Packages (607)
Contributions welcome!
If you have one or more of some common pieces of code that you are always replicating across delivery apps, don't hesitate to contribute! We are the first NuGet package you install when creating a new .Net Mobile banking app!
Please have a look at our contribution guide before you get started.
If you need any help getting started, please let us know.
Useful Links
Thank you to our community for helping to make DEM even better! Mobile Team