public async Task <IActionResult> Create([FromBody] string name)
        {
            manager.Create(name);

            return(Ok());
        }