public void Handle(MessageAttachedToGeneralMessage message)
 {
     Log().Info(string.Format("Adding attachments to request with id {0}", message.GeneralId));
     SendLocal(new AddAttachmentsToGeneralCommandInternal {
         Attachments = Data.Attachments, GeneralId = message.GeneralId, OuterSagaId = Data.Id
     });
 }
 public void Handle(MessageAttachedToGeneralMessage message)
 {
     MarkAsComplete();
 }