Re: 3-tiers of vb.net by William
William
Wed Jun 02 23:50:01 CDT 2004
As an example of tiers in an app.
VendorForm - displays the vendor information to the user and allows the user
to input data.
VendorBE (Business Entity) is a class that represents the vendor.
(name,address, id etc.)
VendorDALC (Data Access Layer Component) accesses the data in the relational
database
UIController - class that sits between the presentation layer and the
business layer.
User clicks on Save button on form
The VendorForm passes the save message along with the data on the form to
the UIController.
The UIController passes the data as a VendorBE to the VendorDALC class by
calling Update method passing it the VendorBE.
Take a look at the Patterns and Practices white papers and books on the MSDN
site.
"ken" <anonymous@discussions.microsoft.com> wrote in message
news:C1EB16D7-3B01-422C-9D42-3BE17486BCBC@microsoft.com...
> Dear all,
> i have a question about 3-tiers of vb.net,
> the presentation tiers is forms
> the database tiers is database
> and how about the business tiers
> if i write some dot net component , is it a business tier
> or if i write some com+ is it a business tier
> or web service is ??