public CustomPropertyDTO ToDto()
 {
     CustomPropertyDTO dto = new CustomPropertyDTO();
     dto.Value = this.Value;
     dto.Key = this.Key;
     dto.DeveloperId = "bvc2004";
     return dto;
 }
 public void FromDto(CustomPropertyDTO dto)
 {
     this.DeveloperId = dto.DeveloperId;
     this.Key = dto.Key;
     this.Value = dto.Value;
 }