コード例 #1
0
        public static string GetLastMessageFrom(SroJsonResponse json)
        {
            var factory = new BoundryMessageFactory(json);

            return(factory.GetMessage());
        }
コード例 #2
0
 public DeliveredEventFactory(SroJsonResponse json)
 {
     Json = json;
 }
コード例 #3
0
        public static RejectedEvent GetRejectedEventFrom(SroJsonResponse json)
        {
            var factory = new RejectedEventFactory(json);

            return(factory.GetEvent());
        }
コード例 #4
0
        public static List <ForwardingEvent> GetForwardingEventListFrom(SroJsonResponse json)
        {
            var factory = new ForwardingEventFactory(json);

            return(factory.GetEventList());
        }
コード例 #5
0
        public static DeliveredEvent GetDeliveredEventFrom(SroJsonResponse json)
        {
            var factory = new DeliveredEventFactory(json);

            return(factory.GetDeliveredEvent());
        }
コード例 #6
0
        public static AwaitingForPickUpEvent GetAwaitingForPickUpEventFrom(SroJsonResponse json)
        {
            var factory = new AwaitingForPickUpEventFactory(json);

            return(factory.GetEvent());
        }
コード例 #7
0
 public RejectedEventFactory(SroJsonResponse json)
 {
     Json = json;
 }
コード例 #8
0
        public static PostedEvent GetPostedEventFrom(SroJsonResponse json)
        {
            var factory = new PostedEventFactory(json);

            return(factory.GetPostedEvent());
        }
コード例 #9
0
 public ForwardingEventFactory(SroJsonResponse json)
 {
     Json = json;
 }
コード例 #10
0
 public BoundryMessageFactory(SroJsonResponse json)
 {
     Json = json;
 }
コード例 #11
0
 public static string GetMessage(SroJsonResponse json) =>
 new BoundryMessageFactory(json).GetMessage();
コード例 #12
0
 public AwaitingForPickUpEventFactory(SroJsonResponse json)
 {
     Json = json;
 }
コード例 #13
0
 public PostedEventFactory(SroJsonResponse json)
 {
     Json = json;
 }