Пример #1
0
        public ActionResult <Pet> CreatePet(Pet pet)
        {
            _networkservice.CreatePet(pet);

            return(CreatedAtRoute("GetVet", new { id = pet.Id.ToString() }, pet));
        }