Beispiel #1
0
        public LotHistoryResponse GetLotHistory(string lotKey)
        {
            var result = _lotService.GetLotHistory(lotKey);

            result.EnsureSuccessWithHttpResponseException();
            return(result.ResultingObject.Map().To <LotHistoryResponse>());
        }