public async Task <IActionResult> GetAllTransactionCategoryAsync()
        {
            // Get response from business logic
            var response = await _transactionsService.GetListTransactionCategoryAsync();

            // Return as http response
            return(response.ToHttpResponse());
        }