Example #1
0
 public PointsOfInterestController(ILogger <PointsOfInterestController> logger, IMailService mailService, ICityRepsitory cityRepsitory)
 {
     _logger         = logger;
     _mailService    = mailService;
     _cityRepository = cityRepsitory;
     //Can use this to request
     //HttpContext.RequestServices.GetService()
 }
Example #2
0
 public CitiesController(ILogger <CitiesController> logger, ICityRepsitory cityRepsitory)
 {
     _cityRepository = cityRepsitory;
     _logger         = logger;
 }