public async Task CombineActorsAsync()
        {
            var action = new CombineAction(
                this.GetManagers().VideoRoleManager,
                this.GetManagers().CoverManager,
                this.video.Id,
                this.series.Id);
            await action.CombineAsync();

            await this.LoadAsync();
        }
 public async Task CombineActorsAsync()
 {
     var action = new CombineAction(
         this.GetManagers().VideoRoleManager,
         this.GetManagers().CoverManager,
         this.video.Id,
         this.series.Id);
     await action.CombineAsync();
     await this.LoadAsync();
 }
Exemplo n.º 3
0
 private void Start()
 {
     Rigidbody           = GetComponent <Rigidbody2D>();
     CombineAction       = GetComponent <CombineAction>();
     _positionConstraint = GetComponent <PositionConstraint>();
 }