public Binder() { _fetch = new FetchCommand(this); _destroy = new DestroyCommand(this); _display = new DisplayCommand(this); Data = new ExpandoObject(); Context = new ExpandoObject(); }
public FormBinder(string uri) { _create = new CreateCommand(this); _update = new UpdateCommand(this); if (System.ComponentModel.DesignerProperties.GetIsInDesignMode(new DependencyObject())) return; new FetchCommand(this).Execute(new CommandArguments() { Uri = uri }); }
public UpdateCommand(Command source) : base(source) { }
public Command(Command source) { binder = source.binder; rest = source.rest; args = source.args; }
public FormCommand(Command source) : base(source) { }
public FetchCommand(Command source) : base(source) { }
public DisplayCommand(Command source) : base(source) { }
public DestroyCommand(Command source) : base(source) { }
public CreateCommand(Command source) : base(source) { }