/// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            CreateDashboardResponse response = new CreateDashboardResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("dashboardArn", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.DashboardArn = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("dashboardId", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.DashboardId = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
예제 #2
0
        public CreateDashboardResponse Handle(CreateDashboardRequest request)
        {
            var response = new CreateDashboardResponse();

            response.Errors = Validate(request);

            if (response.HasErrors)
            {
                return(response);
            }
            try
            {
                var dateNow = DateTime.Now;

                int dashId = _dashRepository.CreateAndGetId(new DashBoard
                {
                    Name         = request.DashName,
                    DateModified = dateNow,
                    DateCreated  = dateNow,
                    UserId       = request.UserId
                });


                response.Dashboard = _dashRepository.Get(dashId);
            }
            catch (Exception ex)
            {
                //response.Errors.Add(new ErrorStatus("BAD_REQUEST"));
                response.Errors.Add(new ErrorStatus(ex.Message));
            }

            return(response);
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            CreateDashboardResponse response = new CreateDashboardResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Arn", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Arn = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("CreationStatus", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.CreationStatus = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("DashboardId", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.DashboardId = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("RequestId", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.RequestId = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("VersionArn", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.VersionArn = unmarshaller.Unmarshall(context);
                    continue;
                }
            }
            response.Status = (int)context.ResponseData.StatusCode;

            return(response);
        }