Views: 8.3K
Replies: 1
Archived
|
Organization of .NET Solutions and .NET ProjectsWith respect to the Design Pattern Framework, how does one know what goes in the Framework Project versus other Projects.
I seeEncryption, Log and Transactions go into the general Framework folder because it is not specific to the website objects but how come Cart went into Framework Project? Thanks Dennis Tucker, Aug 30, 2011
|
|
Reply 1As you mentioned the Framework Project is a 'Utilities' type project, where generally applicable code resides, such as Encryption, Logging, etc. But it also contains the shopping Cart which is used (as a utility) by all Presentation Layers (UIs).
In our current implementation the shopping cart is not persistent. If it were, then the Cart would be a Business Object and it would have certainly ended up in the Business Layer. I hope this helps. Dan McMillan, Aug 31, 2011
|