Example #1
0
        public dynamic EditApplication(int applicationId, [FromBody] EditApplicationInputModel model)
        {
            var orchestrator = new ApplicationOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.EditApplication(applicationId, model).GetResponse());
        }
Example #2
0
        public dynamic GetAllApplicationServices(int applicationId)
        {
            var orchestrator = new ApplicationOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.GetAllApplicationServices(applicationId).GetResponse());
        }
Example #3
0
        public dynamic CreateApplication([FromBody] CreateApplicationInputModel model)
        {
            var orchestrator = new ApplicationOrchestrator(new ModelStateWrapper(this.ModelState));

            return(orchestrator.CreateApplication(model).GetResponse());
        }