Ejemplo n.º 1
0
        public ChoseStand(CoutingTable countingTable, Plot plot)
        {
            this.countingTable = countingTable;
            this.plot = plot;

            InitializeComponent();
        }
Ejemplo n.º 2
0
        public SiteClass(Plot plot, string species, int speciesIndex, CoutingTable countingTable)
        {
            this.plot = plot;
            this.species = species;
            this.speciesIndex = speciesIndex;
            this.countingTable = countingTable;

            InitializeComponent();
        }
Ejemplo n.º 3
0
 public ChoosePlot(Plot passedPlot, CoutingTable countingTable)
 {
     this.countingTable = countingTable;
     this.plot = passedPlot;
     InitializeComponent();
 }