BankApi enables to create/open new account for existing customer, and get all customer infromation about his accounts and transactions. Main parts that BankApi take care of are:
- Account: Represents the account of the customer.
- Customer: Represents customer.
- CustomerAccount: Represents needed data to open a new account.
- Transaction: Refers to the transaction done of a account.
- C#.
- .NET Core (6.0).
- Clone the repository:
clone [email protected]:BassantAbdelaziz/BankApi.git
. - Launch the system.
- Redirects to Swagger.
We have two trail:
- Inset customers data into list and read directly by
GetCustomerById
method. CustomerData.json
insert data into json file, read json, convert to list then read byreadCustomerFromJsonFile
method.