public async Task <IActionResult> CreateTransactionAsync([FromBody] vmTransactionCreateRequest newRequest)
        {
            // Get response from business logic
            var response = await _transactionsService.AddTransactionAsync(newRequest);

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