public dynamic EditGetDetailsEndPoint(int getdetailsendpointId, [FromBody] EditGetDetailsEndPointInputModel model)
        {
            var orchestrator = new GetDetailsEndPointOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditGetDetailsEndPoint(getdetailsendpointId, model).GetResponse());
        }
        public dynamic GetGetDetailsEndPointDetails(int getdetailsendpointId)
        {
            var orchestrator = new GetDetailsEndPointOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetGetDetailsEndPointDetails(getdetailsendpointId).GetResponse());
        }
        public dynamic CreateGetDetailsEndPoint([FromBody] CreateGetDetailsEndPointInputModel model)
        {
            var orchestrator = new GetDetailsEndPointOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateGetDetailsEndPoint(model).GetResponse());
        }
        public dynamic GetAllGetDetailsEndPoints()
        {
            var orchestrator = new GetDetailsEndPointOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetAllGetDetailsEndPoints().GetResponse());
        }