Example #1
0
        public PullInformation GetPullInformation()
        {
            PullInformation information1 = new PullInformation();

            information1.Inventory  = this.GetInventory(0);
            information1.OwnerID    = base.OwnerId;
            information1.Constraint = information1.Inventory.Constraint;
            return(information1);
        }
Example #2
0
        public PullInformation GetPushInformation()
        {
            PullInformation pullInformation = new PullInformation();

            pullInformation.Inventory  = this.GetInventory();
            pullInformation.OwnerID    = OwnerId;
            pullInformation.Constraint = pullInformation.Inventory.Constraint;
            return(pullInformation);
        }
Example #3
0
        public virtual PullInformation GetPushInformation()
        {
            PullInformation information1 = new PullInformation();

            information1.OwnerID    = base.OwnerId;
            information1.Inventory  = this.OutputInventory;
            information1.Constraint = this.OutputInventory.Constraint;
            return(information1);
        }