DispatchCommand() public method

public DispatchCommand ( object command, Action builder = null ) : void
command object
builder Action
return void
 public void Dispatch(object command, Action onSuccess, Action <Exception> onFailure = null)
 {
     _dispatcher.DispatchCommand(command, null);
     onSuccess();
 }