public Tactic Clone() { Tactic result = new Tactic(); result.TacticID = this.TacticID; result.Name = this.Name; result.Description = this.Description; result.TacticTypeID = this.TacticTypeID; result.TacticExpenditure = this.TacticExpenditure; result.ProductID = this.ProductID; result.ProductName = this.ProductName; result.ChannelID = this.ChannelID; result.TacticStartDate = this.TacticStartDate; result.RevenueStartDate = this.RevenueStartDate; result.Duration = this.Duration; result.UpdatedDT = this.UpdatedDT; result.UpdatedBy = this.UpdatedBy; result.Deployed = this.Deployed; result.Cancelled = this.Cancelled; result.IsIRM = this.IsIRM; result.TargetHouseholds = this.TargetHouseholds; result.ControlHouseholds = this.ControlHouseholds; result.postageCost = this.postageCost; result.Endorsement = this.Endorsement; result.CreatedDT = this.CreatedDT; result.CreatedBy = this.CreatedBy; result.RevenueEndDate = this.RevenueEndDate; return result; }
public TacticModel(Tactic tactic) { this._tactic = tactic; }