public CallCreateAggregateFrame(CreateMethodCollection methods, Variable aggregate) : base(methods.IsAsync)
 {
     Aggregate = aggregate;
 }
 public CallCreateAggregateFrame(CreateMethodCollection methods) : base(methods.IsAsync)
 {
     Aggregate = new Variable(methods.AggregateType, this);
 }