public async Task AddAccount([FromBody] AddFinancialAccountDto dto)
 {
     await _financialService.AddAccountAsync(dto);
 }