예제 #1
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;
 }
예제 #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;
 }
예제 #3
0
 //screen
 public int InsertScreen(Screen scrn)
 {
     return sctrlh.InsertScreen(scrn);
 }
예제 #4
0
 public Screen(Screen screen)
 {
     this.screenNo = screenNo;
     this.screen = screen;
 }
예제 #5
0
 private void richTextBox1_TextChanged(object sender, EventArgs e)
 {
     bleh = new CinemaBooking.Screen();
     bleh.makeMatrix();
 }