public ActionResult <Model> Create(Model model)
        {
            _modelService.Create(model);

            return(CreatedAtRoute("GetModel", new { id = model.Id.ToString() }, model));
        }