示例#1
0
        internal void NewRaven()
        {
            Raven result = new Raven();

            result.Step1 = this;
            result.Step  = this.Id;
            result.Game  = this.Game;
            this.Raven   = result;
        }
示例#2
0
        internal void NewRaven()
        {
            Raven result = new Raven
            {
                Step1 = this,
                Step  = this.Id,
                Game  = this.Game
            };

            this.Raven = result;
        }
示例#3
0
        static internal Raven ToRaven(this WCFRaven o, Step step)
        {
            Raven result = new Raven();

            result.Step     = step.Id;
            result.Game     = step.Game;
            result.StepType = o.StepType;

            result.Step1 = step;

            return(result);
        }
示例#4
0
        public void CopyRaven(Step step)
        {
            Raven result = new Raven();

            result.Step1 = step;

            result.Step     = step.Id;
            result.Game     = step.Game;
            result.StepType = this.StepType;

            step.Raven = result;
        }