public void FileToFinancialStatementTest_EmpytValues()
        {
            var fileContent = Properties.Resources.extrato6;

            FinancialStatement financialStatement = this._financialStatementService.FileToFinancialStatement(fileContent).Result;

            financialStatement.Should().NotBeNull();
            financialStatement.BankId.Should().Be(341);
            financialStatement.Account.Should().Be(7037300576);
            financialStatement.CurrencyType.Should().Be(CurrencyType.BRL);
            financialStatement.Transactions.Should().HaveCount(1);
        }
        public async Task FileToFinancialStatementTest_OrderChanged()
        {
            var fileContent = Properties.Resources.extrato2;

            FinancialStatement financialStatement = await this._financialStatementService.FileToFinancialStatement(fileContent);

            financialStatement.Should().NotBeNull();
            financialStatement.BankId.Should().Be(341);
            financialStatement.Account.Should().Be(7037300576);
            financialStatement.CurrencyType.Should().Be(CurrencyType.BRL);
            financialStatement.Transactions.Should().HaveCount(4);
        }