Git Product home page Git Product logo

kareemmagdy55 / bank-management-system Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 227 KB

The Bank Management System is a simple software application designed to manage multiple banks, their branches, customers, loans, and accounts. It provides functionalities for signing up new users, updating user details, adding banks and branches, managing customers, and performing operations on loans.

Python 100.00%

bank-management-system's Introduction

Bank Management System

The Bank Management System is a simple software application designed to manage multiple banks, their branches, customers, loans, and accounts. It provides functionalities for signing up new users, updating user details, adding banks and branches, managing customers, and performing operations on loans.

Introduction

The Bank Management System is a comprehensive solution for efficiently managing the operations of simple banks' systems and their branches. It allows administrators, employees, and customers to interact with a centralized system to perform various tasks related to customers, accounts, and loans.

Functionality

The Bank Management System offers the following functionalities:

  • Signing up a new user: Users can create new accounts by providing their personal details and login credentials.

  • Updating user details: Users can update their personal information to keep their profiles up to date.

  • Add bank: Administrators can add new banks to the system by providing the bank's name, code, and address.

  • Add bank branch: Administrators can add new branches to a bank by specifying the branch's address and branch number.

  • Add a customer: Employees can add new customers to a branch by entering the customer's SSN, name, phone number, and address.

  • Showing a list of loan: Users can view a list of available loan types, such as industry loan, commercial loan, personal loan, etc.

  • Showing a list of customers: Users can view a list of customers associated with a particular branch or bank.

  • Showing a list of loans with customer name and employee name: Users can view a list of loans along with the respective customer name and the employee who handled the loan.

  • Performing operations on loans: Customers can request and start loan operations, while employees can accept, reject, and process loan payments.

Contributing

Contributions to the Bank Management System are welcome. If you encounter any issues or have suggestions for improvements, please submit an issue or a pull request on the GitHub repository.

Conclusion

The Bank Management System is a comprehensive software application that simplifies the management of banks, branches, customers, loans, and accounts. It offers essential functionalities for signing up users, updating details, adding banks and branches, managing customers, and performing loan operations.

By providing an intuitive interface and streamlined processes, the system enhances efficiency and accuracy in the banking industry. It allows for easy onboarding of customers, tracks loan types and customer information, and facilitates smooth account management.

Overall, the Bank Management System is a valuable tool that improves productivity and customer satisfaction, making it an essential asset for banks and financial institutions

bank-management-system's People

Contributors

kareemmagdy55 avatar kziad avatar yaseenemad avatar mu57f4 avatar

Watchers

 avatar

bank-management-system's Issues

Number Column in Loan should be IDENTITY

Here's the Code

CREATE TABLE Loan (
	LoanType varchar(15),
        Number int IDENTITY(1,1), --<
	Balance float,
	LoanStatus varchar(15),
	EmployeeSSN varchar(10) NULL, --<
	CustomerSSN varchar( 10),

	Constraint LoanEmp_FK foreign key (EmployeeSSN) references Employee(SSN),
	Constraint LoanCustomer_FK foreign key (CustomerSSN) references Customer (SSN), 

	CONSTRAINT Loan_pk PRIMARY KEY (Number)
);

I think EmployeeSSN in Loan also should accept null values because when customer requests a loan, he should not provide an Employee SSN.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.