public static IUiControl CreateControl(string channelName, string namespaceName, string name)
 {
     return(UiControlFactoryPluginFacade.CreateControl(new ChannelIdentifier(channelName), namespaceName, name));
 }
 public static IUiControl CreateControl(IFormChannelIdentifier channel, string namespaceName, string name)
 {
     return(UiControlFactoryPluginFacade.CreateControl(channel, namespaceName, name));
 }
Пример #3
0
 public object CreateProducer(IFormChannelIdentifier channel, string namespaceName, string name)
 {
     return(UiControlFactoryPluginFacade.CreateControl(channel, namespaceName, name));
 }