public dynamic GetAllEndPointModelEndPointModelProperties(int endpointmodelId) { var orchestrator = new EndPointModelOrchestrator(new ModelStateWrapper(this.ModelState)); return(orchestrator.GetAllEndPointModelEndPointModelProperties(endpointmodelId).GetResponse()); }
public dynamic CreateEndPointModel([FromBody] CreateEndPointModelInputModel model) { var orchestrator = new EndPointModelOrchestrator(new ModelStateWrapper(this.ModelState)); return(orchestrator.CreateEndPointModel(model).GetResponse()); }
public dynamic EditEndPointModel(int endpointmodelId, [FromBody] EditEndPointModelInputModel model) { var orchestrator = new EndPointModelOrchestrator(new ModelStateWrapper(this.ModelState)); return(orchestrator.EditEndPointModel(endpointmodelId, model).GetResponse()); }
public dynamic GetAllEndPointModels() { var orchestrator = new EndPointModelOrchestrator(new ModelStateWrapper(this.ModelState)); return(orchestrator.GetAllEndPointModels().GetResponse()); }