I've built some business objects, and I've built a "data access layer" that will read, update, delete, etc. Now I want to bind these objects to grids/text boxes/combo's etc in a WinForm's app.
I could do the manual method like:
txtName.Text = employee.Name;
and then on save do something like
employee.Name = txtName.Text;
But I'd much rather use the "RAD" features of VS 2008. I've done some googling but I'm not finding any quick tutorial that shows me what I need to do to my business objects to allow them to be "data bound". Can anyone help?