public HomeController(IParksDAL parksDal) { _parksDAL = parksDal; }
public WeatherController(IWeatherDAL weatherDAL, IParksDAL parkDAL) { this.weatherDAL = weatherDAL; this.parkDAL = parkDAL; }
public HomeController(IParksDAL dal, IWeatherDAL dal2) { _dal = dal; _weatherdal = dal2; }
/// <summary> /// Injecting interface into the HomeController constructor /// </summary> /// <param name="dal"></param> public HomeController(IParksDAL dal) { _dal = dal; }
public ParksApiController(IParksDAL parksDal) { _parksDal = parksDal; }
public HomeController(IParksDAL parkDAL) { this.dal = parkDAL; }
public HomeController(IParksDAL parksDAL, IWeatherDAL weatherDAL, ISurveyDAL surveyDAL) { this.ParksDAL = parksDAL; this.WeatherDAL = weatherDAL; this.SurveyDAL = surveyDAL; }
public SurveyController(ISurveyDAL surveyDAL, IParksDAL parksDAL) { this.surveyDAL = surveyDAL; this.parksDAL = parksDAL; }
public ParksController(IParksDAL parksDAL) { this.parksDAL = parksDAL; }