Beispiel #1
0
        public ProductionLineProbablyGetResponse Execute(ProductionLineProbablyGetRequest request)
        {
            ProductionLineProbablyGetResponse probablyGetResponse    = new ProductionLineProbablyGetResponse();
            ProductionLineProbablyInfo        productionLineProbably = ServiceHelper.LoadService <IProductionService>().GetProductionLineProbably(request.DID);

            if (productionLineProbably != null)
            {
                probablyGetResponse.ProductionLineProbably = productionLineProbably.ToModel();
            }
            return(probablyGetResponse);
        }