Ejemplo n.º 1
0
 public TreatmentsController(
     ITreatmentsService service,
     IPetCenterService petCenterService)
 {
     this.treatmentService = service;
     this.petCenterService = petCenterService;
 }
Ejemplo n.º 2
0
 public PetCenterController(
     IPetCenterService petService,
     IAnimalTypeService animalTypeService,
     IAnimalBreedService breedService,
     IDoctorService doctorService)
 {
     this.petService       = petService;
     this.animalTypeSevice = animalTypeService;
     this.breedService     = breedService;
     this.doctorService    = doctorService;
 }