Skip to content

dragontail/Transactions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Transactions

Coding Challenge #3

Table of Contents

  1. Summary
  2. Approach
  3. Usage

Summary

The purpose of this coding challenge is to design an API that allows for the transfer of money between two bank accounts.

The bank's database has the following structure:

TABLE transactions
	- reference (unique)
	- amount
	- account number

The transactions table registers any transaction in an account (i.e. Person A paid $20 for a movie).

TABLE balances
	- account number (unique)
	- balance

The balances table represents the account balance of customers (i.e. Person A has $5000 in account).

The bank uses a relational database (MySQL) to store information. The task is to write the transfer API method.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published