コード例 #1
0
 public HenspeRowModel(StructureElementDto.ElementType elementType, string description, string image)
 {
     this.elementType = elementType;
     this.description = description;
     this.image       = image;
 }
コード例 #2
0
        public void AddStructureElement(StructureElementDto.ElementType elementType, string description, string image)
        {
            StructureElementDto structureElementDto = new StructureElementDto(elementType, description, image);

            structureElementList.Add(structureElementDto);
        }