If the singleton is used for UI bits, then the UI project (web project,
winforms project) is the correct place. The example here would be
application settings for the UI.
If not, then it does not belong there. It belongs in the layer where it is
used. If it is database settings, you can guess where it goes. If neither DB
nor UI, it is probably a business object. I say probably, as you may be
using a facade pattern and have it there (not as likely).
Short answer: Need to know more about what you are placing in the singleton
to answer more concretely.

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box!
*************************************************
> Hello,
>
[quoted text clipped - 9 lines]
> Thank you
> John
John Sheppard - 21 Nov 2007 07:43 GMT
Thanks Cowboy...
Sorry my server was lagging at work and didnt see your response...
Im still learning about patterns, at current the singleton is the first
pattern im implementing...
At current it is a Business object so its going there...I know we have some
bad architecture issues which im working through, so its kinda half UI half
BO...but it will in the end be a BO layer...
Thanks once again, good answer, I very much appreciate it
John
> If the singleton is used for UI bits, then the UI project (web project,
> winforms project) is the correct place. The example here would be
[quoted text clipped - 23 lines]
>> Thank you
>> John
Cowboy (Gregory A. Beamer) - 21 Nov 2007 22:04 GMT
If you want a decent enough, and cheap enough, set of patterns in a "real
world" application, consider looking at dofactory.com and purchasing the
Pattern Framework. I disagree with parts of the implementation, but it is a
great learning tool. It implements nearly every pattern, somewhere, and
illustrates the use of a facade between business and UI, which is rather
nice.
My biggest issue is with the implementation of the data layer, as I feel it
is a bit too complex for a maintainable solution, but it does work as a
basic pattern.

Signature
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA
*************************************************
| Think outside the box!
*************************************************
> Thanks Cowboy...
>
[quoted text clipped - 37 lines]
>>> Thank you
>>> John
I answered my own question...it works good!
I just put it in my Business Logic layer cause all lower layers use it...
Thanks for anyone who read my message...
> Hello,
>
[quoted text clipped - 9 lines]
> Thank you
> John