public void Load(string name, Action onLoaded, Action onFailed)
    {
        this.onLoaded = onLoaded;
        this.onFailed = onFailed;

        DummyOne.OnAdFailed = this.onFailed;
        DummyOne.OnAdLoaded = this.onLoaded;

        DummyOne.Load();
    }
 public TestService10_Decorator1(ITestService10 testService10, DummyOne dummyValue)
 {
     TestService10 = testService10;
 }
 public void Destroy(string name)
 {
     DummyOne.Destroy();
 }
 public void Show(string name, Action onFinished)
 {
     this.onFinished       = onFinished;
     DummyOne.OnAdFinished = this.onFinished;
     DummyOne.Show();
 }