コード例 #1
0
        private void Agregar_Click(object sender, EventArgs e)
        {
            string      nombre  = textBox1.Text;
            string      dueño   = textBox2.Text;
            string      id      = textBox3.Text;
            string      horario = textBox4.Text;
            bool        mesas   = checkBox1.Checked;
            Restaurante r       = new Restaurante(nombre, dueño, id, horario, mesas);

            loc.Add(r);
            textBox1.Clear();
            textBox2.Clear();
            textBox3.Clear();
            textBox4.Clear();
        }
コード例 #2
0
 public void aña(Restaurante r)
 {
 }