public AttachmentEntityActionButtonView(AttachmentEntityActionButtonType buttonType, AttachmentEntityActionButtonStyle style, string text)
     : base(buttonType, style, text)
 {
 }
 public AttachmentEntityActionButtonBaseView(AttachmentEntityActionButtonType buttonType)
 {
     buttonTypeVal = buttonType;
 }
 public AttachmentEntityActionButtonView(AttachmentEntityActionButtonType buttonType)
     : base(buttonType)
 {
 }
 public AttachmentEntityActionButtonBaseView(AttachmentEntityActionButtonType buttonType, AttachmentEntityActionButtonStyle style, string text)
     : this(buttonType)
 {
     this.style = style;
     this.text  = text;
 }