Está en la página 1de 5

Faculty of Computer and Mathematical Sciences

CSC 248 Object Oriented Programming

Group : JCS1105A

Title : ANA Travel Agency Booking System

Group Members:

No Name Matrix number


1. SITI NUR ASYIQIN BINTI AZHAM 2014657254
2. NOORNADIA BINTI MOHD GHANI 2014269352
3.

Lecturers Name : Madam Mazlyda Binti Abd Rahman


Table of Contents
Introduction

ANA Travel Agency and Booking System have grown to become one of leading travel
consultancies and travel agency in Johor Bharu, Malaysia. With dedicated, experienced and
committed team. It has successfully garnered local market reach in the travel services
sector. As a reputable travel agent in Malaysia, ANA travel Agency and Booking System is
strategically placed to work in-tandem with your desires and continues offering the best in
travel and tourism products including travel and tour package, hotel booking and other
services.

ANA Travel Agency and Booking System designer for air, land and sea. We create the
prefect combination of travel. That includes accommodation, tour guide, hotel, sporting
ticket and a whole load of other related services that make us distinctly stand out from the
rest. So, whatever your travel needs, be it government business or leisure, well serve you
with exceptional quality and offer an extensive array of possibilities that will make travel a
lot more convenient and cost effective.

And with ANA Travel Agency weve optimized convenience and customer satisfaction
through the use of both the efficiency of technology and the warm flexibility of the human
touch in that you can also benefit by engaging our client service professionals for opinions,
assistance and general consultation.
Object Class

public class Customer


{
private int cId, numCust, numPax;
private String cName;
private String destination; // Malacca, Penang, Manukan Island, Pangkor
private String package; // Standard ,VIP
private int payMethod; // 1 - Online Banking 2 - Credit Card

//normal constructor
public Customer(int cId, int numCust, String cName, String destination, int package, String payMethod)

//accessor method
public int getcId (){ ... }
public int getNumCust (){ ... }
public String getCName (){ ... }
public String getDestination(){ ... }
public int getPackage(){ ... }
public String getPayMethod (){ ... }

//mutator method
public void setcId (){ ... }
public void setNumVoter (){ ... }
public void setCName (){ ... }
public void setCArea (){ ... }
public void setCParty(){ ... }
public void setCState (){ ... }

//toString method
public String toString (){ ... }
}
Objectives

1. Insert customer data according to package choosen.


2.

También podría gustarte