예제 #1
0
        public string post_upload_processauditmessage(UploadInputModel input)
        {
            var command = new ProcessAuditMessage
            {
                MessageId             = input.MessageId,
                Headers               = input.Headers,
                AdditionalInformation = input.AdditionalInformation,
                Body = input.Body
            };

            Bus.Send(command);
            return("ok");
        }
예제 #2
0
        public string post_upload_processauditmessage(UploadInputModel input)
        {
            var command = new ProcessAuditMessage
                              {
                                  MessageId =input.MessageId,
                                  Headers = input.Headers,
                                  AdditionalInformation = input.AdditionalInformation,
                                  Body = input.Body
                              };

            Bus.Send(command);
            return "ok";
        }