Ejemplo n.º 1
0
 public static void SetDefaultViewService(Type viewServiceType, string name)
 {
     ResourceLocator.SetDefaultResourceLocator(viewServiceType, name);
 }
Ejemplo n.º 2
0
 public static void SetDefaultViewService <T>(string name)
 {
     ResourceLocator.SetDefaultResourceLocator <T>(name);
 }
Ejemplo n.º 3
0
 public static void SetDefaultChannelObserver(Type channelType, string name)
 {
     ResourceLocator.SetDefaultResourceLocator(GetObserverTypeForChannel(channelType), name);
 }
Ejemplo 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);
 }