paulthepaddy
Well-known member
Hi Guys, i am buildiong an appliation that i am tying to understand and think would it be worth while turning into an n-tier application, would like some thoughts from you guys on what i think is a good idea :S
been reading up on 3 tier appliocation design, but i don't think that would really apply to me, we are a small family company so their isn't going to be massive amounts of user using this application, so i can't see the 'Business Rules' tier being really useful to me. from my understanding the business rules is a layer that would validate and handle data before it goes into the DAL, but alot of my formatting gets done by my client and the class's it would use eg
so could some advise me if it is a bad idea if i dont use a business rules layer?
been reading up on 3 tier appliocation design, but i don't think that would really apply to me, we are a small family company so their isn't going to be massive amounts of user using this application, so i can't see the 'Business Rules' tier being really useful to me. from my understanding the business rules is a layer that would validate and handle data before it goes into the DAL, but alot of my formatting gets done by my client and the class's it would use eg
VB.NET:
Private _Reg As String
Private _DateDone As Date
Public Property Reg As String ' Car Reg
Get
Return _Reg
End Get
Set(value As String)
_Reg = StrConv(value, VbStrConv.Uppercase)
End Set
End Property
so could some advise me if it is a bad idea if i dont use a business rules layer?