b
Size: a a a
b
Dm
Dm
b
Dm
b
/// <summary>
/// Returns list of transactions for specified account number within date range inclusive
/// </summary>
/// <param name="iban" ex></param>
/// <param name="startDate"></param>
/// <param name="endDate"></param>
/// <returns></returns>
[HttpGet("get-account-report/{iban}")]
[SwaggerOperation(Summary = "Returns list of transactions for specified account number within date range inclusive")]
public IActionResult GetAccountReport(
string iban,
DateTime startDate,
DateTime endDate)
{
return Ok(_bankService.GetAccountReport(iban, startDate, endDate));
}
Dm
Dm
Dm
b
rr
rr
b
ГГ
ГГ
ГГ
ГГ
Dm
Dm
ГГ