Esempio n. 1
0
        public static void CreatePet(PetInputViewModel petInputViewModel)
        {
            var pet = new Pet {
                Name = petInputViewModel.Name
            };

            TransactionManager.CreateEntity(pet);
        }
Esempio n. 2
0
 public static void CreatePet(PetInputViewModel petInputViewModel)
 {
     PetRepository.CreatePet(petInputViewModel);
 }