private void SetValues(OtherEntity otherEntity)
 {
     this.FirstValue  = otherEntity.FirstValue;
     this.SecondValue = otherEntity.SecondValue;
     this.ThirdValue  = otherEntity.ThirdValue;
     this.FourthValue = otherEntity.FourthValue;
     this.TheParams   = otherEntity.TheParams;
 }
 private void SetFirstValue(OtherEntity entity)
 {
     this.FirstValue = entity.FirstValue;
 }