Beispiel #1
0
 public OwnerService(IOwnerRepository ownerRepo, IValidateIdService validateIdService,
                     IPetRepository petRepo)
 {
     this._ownerRepo         = ownerRepo;
     this._validateIdService = validateIdService;
     this._petRepo           = petRepo;
 }
Beispiel #2
0
 public PetService(IPetRepository petRepository, IValidateIdService validateIdService, IOwnerRepository ownerRepository)
 {
     _petRepository   = petRepository;
     _validateId      = validateIdService;
     _ownerRepository = ownerRepository;
 }
Beispiel #3
0
 public Printer(IPetService petService, IOwnerService ownerService, IValidateIdService validationService)
 {
     _petService        = petService;
     _ownerService      = ownerService;
     _validationService = validationService;
 }
Beispiel #4
0
 public PetService(IPetRepository petRepo, IValidateIdService validateIdService)
 {
     this._petRepo           = petRepo;
     this._validateIdService = validateIdService;
 }