Beispiel #1
0
        private void shpSearch_Click(object sender, EventArgs e)
        {
            string             text  = this.shpSearchbox.Text;
            ShipmentRepository sr    = new ShipmentRepository();
            List <ShipmentR>   iList = sr.searchShipment(text);

            this.dataGrid3.DataSource = iList;
        }