Ejemplo n.º 1
0
        public async Task <List <ITransaction> > GetTransactions(string accountId, DateTime from)
        {
            Dictionary <string, string> parameters = new Dictionary <string, string>();

            parameters.Add("from", GetOandaDateTime(from));
            List <ITransaction> transactions = await Rest20.GetTransactionsByDateRangeAsync(accountId, parameters);

            return(transactions);
        }