1 Attachment(s)
Re: Database design - layers
Similar to what i do, but i call the Db 'abstraction'/app interface layer a Business Layer in my apps.
Normall i would create a Data Layer folder and Business Layer folder.
Within the Data Layer folder i would also place parameter collection classes, which will be used by a stored procedure.
And the Business Layer folder would hold a number of classes that would interact between the web front end and the data layer. Each business class would hold a number of function. E.g. cContracts.vb will hold a number of functions like SelectContract, UpdateContracts, DeleteContract, SearchContracts... etc
e.g. Example image below
Re: Database design - layers
Cheers Kev I will keep this in mind.
Chris