Ejemplo n.º 1
0
 public CardsRemoveAttachmentRequest(ICardId card, IAttachmentId attachment)
     : base(card, "attachments/{idAttachment}", Method.DELETE)
 {
     Guard.NotNull(attachment, "attachment");
     AddParameter("idAttachment", attachment.GetAttachmentId(), ParameterType.UrlSegment);
 }
		public CardsRemoveAttachmentRequest(ICardId card, IAttachmentId attachment)
			: base(card, "attachments/{idAttachment}", Method.DELETE)
		{
			Guard.NotNull(attachment, "attachment");
			AddParameter("idAttachment", attachment.GetAttachmentId(), ParameterType.UrlSegment);
		}