Exemplo n.º 1
0
 public async Task <IReadOnlyList <Transaction> > Get(Guid userId, string sortingColumn, bool isAscending)
 {
     return(await _transactionsRepository.GetSortedUserTransactions(Domain.Constants.Constants.TestUserId,
                                                                    new SortingModel { IsAscending = isAscending, SortingColumn = sortingColumn }));
 }