Пример #1
0
        public ActionResult <Response> CreatePlugin(Plugin plugin)
        {
            response = new Response();

            response = pluginService.CreatePlugin(plugin);

            return(responseFactory.CreateControllerResponse(response));
        }