Esempio n. 1
0
 public Costumer(Person phoneNo, Person fname, Person lname, Person email)
 {
     this.cosPhoneNo = phoneNo;
     this.cosFname = fname;
     this.cosLname = lname;
     this.cosEmail = email;
 }
Esempio n. 2
0
 public Order(int p1, string p2, int p3, Screen screen, int p4, double p5, Person person, Costumer costumer1, Costumer costumer2)
 {
     // TODO: Complete member initialization
     this.p1 = p1;
     this.p2 = p2;
     this.p3 = p3;
     this.screen = screen;
     this.p4 = p4;
     this.p5 = p5;
     this.person = person;
     this.costumer1 = costumer1;
     this.costumer2 = costumer2;
 }
Esempio n. 3
0
 public Order(Movie title, String date, int time, Screen screenNo, int seatAmount, double price, int orderId, Person empId, Costumer cosId, Costumer phoneNo)
 {
     this.title = title;
     this.date = date;
     this.time = time;
     this.screenNo = screenNo;
     this.seatAmount = seatAmount;
     this.price = price;
     this.orderId = orderId;
     this.empId = empId;
     this.cosId = cosId;
     this.phoneNo = phoneNo;
 }
Esempio n. 4
0
 public Employee(int empId, Person fname, Person lname, Person email)
 {
     this.empId = empId;
 }
Esempio n. 5
0
 public Costumer(Person phoneNo)
 {
     this.cosPhoneNo = phoneNo;
 }