public HomeController(IDestinationRepo destinationRepo, IWebHostEnvironment webHostEnvironment, IConfiguration config)
 {
     _destinationRepo    = destinationRepo;
     _webHostEnvironment = webHostEnvironment;
     _config             = config;
 }
Esempio n. 2
0
 public DestinationsController(IDestinationRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }