public void SetValues(DataStoreReference otherElement)
 {
     base.SetValues(otherElement);
     dataState      = otherElement.DataState;
     itemSubjectRef = otherElement.ItemSubjectRef;
     dataStoreRef   = otherElement.DataStoreRef;
 }
        public override BaseElement Clone()
        {
            DataStoreReference clone = new DataStoreReference();

            clone.SetValues(this);
            return(clone);
        }