Tagged Questions

4
votes
2answers
354 views

Static members class vs. normal c-like interface

Hey there. After reading here about the Service Locator pattern, it got me thinking wether a class with only static members really is the way to go, or if a normal c-like interace wouldn't be more ...
1
vote
1answer
707 views

Scope of View Models when using Service Locator Pattern in WPF app

When using a Service Locator class to serve up ViewModels for your WPF pages to bind to. Should the ViewModels be Singleton scoped or Factory scoped? Is one generally a better idea for WPF ...
0
votes
2answers
130 views

Validation without ServiceLocator

I am getting back again and again to it thinking about the best way to perform validation on POCO objects that need access to some context (ISession in NH, IRepository for example). The only option I ...