public ToursManagementController(ITourRepository tourRepository, IEmployeeRepository employeeRepository, IDestinatioRepository destinatioRepository, ITourDestinationRepository tourDestinationRepository) { _tourRepository = tourRepository; _employeeRepository = employeeRepository; _destinatioRepository = destinatioRepository; _tourDestinationRepository = tourDestinationRepository; }
public DestinationsManagementController(IDestinatioRepository destinatioRepository) { _destinatioRepository = destinatioRepository; }
public ToursController(ITourRepository tourRepository, IDestinatioRepository destinatioRepository) { _tourRepository = tourRepository; _destinatioRepository = destinatioRepository; }