Exemplo n.º 1
0
Arquivo: Form1.cs Projeto: trase8/kurs
 public order(int table, int waiter, int arg_client)
 {
     cost = 0;
     waiter_id = waiter;
     client cli = new client(arg_client);
     client = cli;
     check ch = new check();
     check = ch;
     id = 0;
 }
Exemplo n.º 2
0
Arquivo: Form1.cs Projeto: trase8/kurs
 public order(int arg_table, int waiter) {
     cost = 0;
     waiter_id = waiter;
     check ch = new check();
     table = new table(arg_table);
     check = ch;
     id = 0;
 }