internal void NewRaven() { Raven result = new Raven(); result.Step1 = this; result.Step = this.Id; result.Game = this.Game; this.Raven = result; }
internal void NewRaven() { Raven result = new Raven { Step1 = this, Step = this.Id, Game = this.Game }; this.Raven = result; }
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); }
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; }