Пример #1
0
        public void SetRelativeQtyPer(DemandChain demandChainBase)
        {
            if (this.AbsoluteQtyPer == 0)
            {
                this.AbsoluteQtyPer = 1;
            }

            this.RelativeQtyPer = demandChainBase.AbsoluteQtyPer / this.AbsoluteQtyPer;
        }
Пример #2
0
        public override bool Equals(object obj)
        {
            DemandChain another = obj as DemandChain;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.ID == another.ID);
            }
        }
Пример #3
0
        public void SetRelativeQtyPer(DemandChain demandChainBase)
        {
            if (this.AbsoluteQtyPer == 0)
                this.AbsoluteQtyPer = 1;

            this.RelativeQtyPer = demandChainBase.AbsoluteQtyPer / this.AbsoluteQtyPer;
        }
Пример #4
0
 public void SetRelativeLeadTime(DemandChain demandChainBase)
 {
     this.RelativeLeadTime = demandChainBase.AbsoluteLeadTime - this.AbsoluteLeadTime;
 }
Пример #5
0
 public void SetRelativeLeadTime(DemandChain demandChainBase)
 {
     this.RelativeLeadTime = demandChainBase.AbsoluteLeadTime - this.AbsoluteLeadTime;
 }