Hi,
I have a object data access layer which I use to return data via a datareader / dataset. I'm think of creating a Business Logic Layer, to actually return UI components instead.
For eg; Instead a calling a DAL layer 3 times and writing the code to build a dropdown box, why not call a BLL function which does the data access and return the dropdown already populated.
Is there much overhead with doing this in .net - is it okay as stuff is byref by default ?
Thanks inadvance.
I have a object data access layer which I use to return data via a datareader / dataset. I'm think of creating a Business Logic Layer, to actually return UI components instead.
For eg; Instead a calling a DAL layer 3 times and writing the code to build a dropdown box, why not call a BLL function which does the data access and return the dropdown already populated.
Is there much overhead with doing this in .net - is it okay as stuff is byref by default ?
Thanks inadvance.