public RelatedDtoProperty(RelatedDtoAttribute attribute, RelatedValueType dtoType, RelatedValueType idType)
        {
            Attribute = attribute;
            DtoType   = dtoType;
            IdType    = idType;

            BuildDtoListType();
        }
 public RelatedDtoProperty(RelatedDtoAttribute attribute, PropertyInfo property, PropertyInfo dtoIdProperty)
 {
     Attribute     = attribute;
     DtoProperty   = property;
     DtoIdProperty = dtoIdProperty;
 }