Пример #1
0
 internal JsCommandWithoutParameter(HtmlViewContext context, IJavascriptToGlueMapper converter, ICommandWithoutParameter command) :
     base(context, converter)
 {
     _Command    = command;
     _CanExecute = _Command.CanExecute;
 }
Пример #2
0
 public JsCommandWithoutParameter Build(ICommandWithoutParameter command)
 {
     return(Cache(command, new JsCommandWithoutParameter(_HtmlViewContext, _JavascriptToCSharpConverter, command)));;
 }
 public JsCommandWithoutParameter(HtmlViewContext context, IJavascriptToCSharpConverter converter, ICommandWithoutParameter command) :
     base(context, converter)
 {
     _Command    = command;
     _CanExecute = _Command.CanExecute;
 }
 public JsMappedCommandWithoutParameter(HtmlViewContext context, IJavascriptToGlueMapper converter, ICommandWithoutParameter command)
     : base(context, converter, command)
 {
 }
 public JsCommandWithoutParameter Build(ICommandWithoutParameter command)
 {
     return(Cache(command, new JsMappedCommandWithoutParameter(_HtmlViewContext, _JavascriptToGlueMapper, command)));;
 }