public ActionResult <int> NewCat([FromBody] string catName)
        {
            var id = Vet.AddNewCat(catName);

            return(new ActionResult <int>(id));
        }