コード例 #1
0
        public OperationHistoryRecord[] GetOperationHistory(Rpo rpo)
        {
            if (rpo == null)
            {
                throw new ArgumentNullException(nameof(rpo), "The RPO parameter is null");
            }

            var operaationHistoryRequest = new OperationHistoryRequest
            {
                Barcode     = rpo.Barcode,
                MessageType = (int)rpo.MessageType
            };

            var authHeader = ConvertAuthDataToAuthHeader(_authorizationData);

            return(_russianPostService.getOperationHistory(operaationHistoryRequest, authHeader));
        }
コード例 #2
0
 public PostalOrderEvent[] PostalOrderEventsForMail(Rpo rpo)
 {
     throw new System.NotImplementedException();
 }
コード例 #3
0
 public SmsHistoryRecord[] GetSmsHistory(Rpo rpo)
 {
     throw new System.NotImplementedException();
 }
コード例 #4
0
 public CustomDutyEvent[] GetCustomDutyEventsForMail(Rpo rpo)
 {
     throw new System.NotImplementedException();
 }