예제 #1
0
        //Get api/wallettransaction
        public IHttpActionResult GetWalletTransactions()
        {
            WalletTransactionService walletTransactionService = CreateWalletTransactionService();
            var transactions = walletTransactionService.GetWalletTransactions();

            return(Ok(transactions));
        }