示例#1
0
        public virtual object Clone()
        {
            var newPlan = new PlanItem()
            {
                ConfirmationCode = this.ConfirmationCode,
                Duration         = this.Duration,
                EndsAt           = this.EndsAt,
                PlanItemId       = this.PlanItemId,
                StartsAt         = this.StartsAt
            };

            return(newPlan);
        }
示例#2
0
 public virtual object Clone()
 {
     var newPlan = new PlanItem()
     {
         ConfirmationCode = this.ConfirmationCode,
         Duration = this.Duration,
         EndsAt = this.EndsAt,
         PlanItemId = this.PlanItemId,
         StartsAt = this.StartsAt
     };
     return newPlan;
 }