Esempio n. 1
0
 public static void SetDefaultViewService(Type viewServiceType, string name)
 {
     ResourceLocator.SetDefaultResourceLocator(viewServiceType, name);
 }
Esempio n. 2
0
 public static void SetDefaultViewService <T>(string name)
 {
     ResourceLocator.SetDefaultResourceLocator <T>(name);
 }
Esempio n. 3
0
 public static void SetDefaultChannelObserver(Type channelType, string name)
 {
     ResourceLocator.SetDefaultResourceLocator(GetObserverTypeForChannel(channelType), name);
 }
Esempio n. 4
0
 public static void SetDefaultChannelObserver <T>(string name)
 {
     ResourceLocator.SetDefaultResourceLocator(typeof(IObserver <T>), name);
 }
 public static void SetDefaultService <T>(string name)
 {
     ResourceLocator.SetDefaultResourceLocator(typeof(T), name);
 }