public WCFRaven ToWCFRaven() { WCFRaven result = new WCFRaven(); result.Step = this.Step; result.StepType = this.StepType; return(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); }