public CommentService(IOwnerProfileRepository ownerProfileRepository, IVeterinaryProfileRepository veterinaryProfileRepository, IUnitOfWork unitOfWork, ICommentRepository commentRepository, IAppointmentRepository appointmentRepository) { _ownerProfileRepository = ownerProfileRepository; _veterinaryProfileRepository = veterinaryProfileRepository; _unitOfWork = unitOfWork; _commentRepository = commentRepository; _appointmentRepository = appointmentRepository; }
public OwnerProfileService(IUnitOfWork unitOfWork, IPetOwnerRepository petOwnerRepository, IOwnerLocationRepository ownerLocationRepository, IOwnerProfileRepository ownerProfileRepository, IProvinceRepository provinceRepository, ICityRepository cityRepository, IUserRepository userRepository) { _unitOfWork = unitOfWork; _petOwnerRepository = petOwnerRepository; _ownerLocationRepository = ownerLocationRepository; _ownerProfileRepository = ownerProfileRepository; _provinceRepository = provinceRepository; _cityRepository = cityRepository; _userRepository = userRepository; }
public AppointmentService(IOwnerProfileRepository ownerProfileRepository, IPetProfileRepository petProfileRepository, IVeterinaryProfileRepository veterinaryProfileRepository, IVetProfileRepository vetProfileRepository, IScheduleRepository scheduleRepository, IAppointmentRepository appointmentRepository, IUnitOfWork unitOfWork) { _ownerProfileRepository = ownerProfileRepository; _petProfileRepository = petProfileRepository; _veterinaryProfileRepository = veterinaryProfileRepository; _vetProfileRepository = vetProfileRepository; _scheduleRepository = scheduleRepository; _appointmentRepository = appointmentRepository; _unitOfWork = unitOfWork; }
public RecordatoryService(IVetProfileRepository vetProfileRepository, IOwnerProfileRepository ownerProfileRepository, IScheduleRepository scheduleRepository, IRecordatoryTypeRepository recordatoryTypeRepository, IPetProfileRepository petProfileRepository, IRecordatoryRepository recordatoryRepository, IUnitOfWork unitOfWork, IAppointmentRepository appointmentRepository) { _vetProfileRepository = vetProfileRepository; _ownerProfileRepository = ownerProfileRepository; _scheduleRepository = scheduleRepository; _recordatoryTypeRepository = recordatoryTypeRepository; _petProfileRepository = petProfileRepository; _recordatoryRepository = recordatoryRepository; _unitOfWork = unitOfWork; _appointmentRepository = appointmentRepository; }
public SportComplexesController(IOwnerProfileRepository ownerprofileRepository, ISportComplexRepository sportcomplexRepository) { this.ownerprofileRepository = ownerprofileRepository; this.sportcomplexRepository = sportcomplexRepository; }
public OwnerProfilesController(IOwnerProfileRepository ownerprofileRepository) { this.ownerprofileRepository = ownerprofileRepository; }