Exemplo n.º 1
0
 public void EditAttachment(WITAttachment attachment)
 {
     attachment.ActionType = AttachmentChangeActionType.Edit;
     m_attachments.Add(attachment);
 }
Exemplo n.º 2
0
 public void DeleteAttachment(WITAttachment attachment)
 {
     attachment.ActionType = AttachmentChangeActionType.Delete;
     m_attachments.Add(attachment);
 }
Exemplo n.º 3
0
 public void AddAttachment(WITAttachment attachment)
 {
     attachment.ActionType = AttachmentChangeActionType.Add;
     m_attachments.Add(attachment);
 }