예제 #1
0
 public ParkController(IUserSecurityDAO db, IParkGeekDAO parkDAO, IWeatherDAO weatherDAO, ISurveyResultDAO surveyDAO, IHttpContextAccessor httpContext) : base(db, httpContext)
 {
     _parkDAO      = parkDAO;
     _weatherDAO   = weatherDAO;
     _surveyDAO    = surveyDAO;
     _userSecurity = db;
 }
 public SurveyController(ISurveyResultDAO surveyResultDAO)
 {
     this.dao = surveyResultDAO;
 }
 public HomeController(IParkDAO parkDAO, IWeatherDAO weatherDAO, ISurveyResultDAO surveyDAO)
 {
     this.parkDAO    = parkDAO;
     this.weatherDAO = weatherDAO;
     this.surveyDAO  = surveyDAO;
 }
예제 #4
0
 public SurveyController(ISurveyResultDAO surveyResultDAO, IParkDAO parkDAO)
 {
     this.surveyResultDAO = surveyResultDAO;
     this.parkDAO         = parkDAO;
 }