Example #1
0
 public PetCenterController(
     IPetCenterService petService,
     IAnimalTypeService animalTypeService,
     IAnimalBreedService breedService,
     IDoctorService doctorService)
 {
     this.petService       = petService;
     this.animalTypeSevice = animalTypeService;
     this.breedService     = breedService;
     this.doctorService    = doctorService;
 }
 public AccountController(IPublicationService publicationService, IAnimalSizeService animalSizeService, IAnimalTypeService animalTypeService)
 {
     _publicationService = publicationService;
     _animalSizeService  = animalSizeService;
     _animalTypeService  = animalTypeService;
 }
Example #3
0
 public AnimalTypesController(IAnimalTypeService animalTypeService, IMapper mapper)
 {
     _animalTypeService = animalTypeService;
     _mapper            = mapper;
 }
Example #4
0
 public AnimalTypeController(IAnimalTypeService service)
 {
     _service = service;
 }
Example #5
0
 public AnimalTypeController(IAnimalTypeService animalTypeService)
 {
     _animalTypeService = animalTypeService;
 }