public SurveyController(ISurveySqlDal surveyDAL, IParkSqlDal parkDAL)
 {
     this.surveyDAL = surveyDAL;
     this.parkDAL = parkDAL;
 }
示例#2
0
 public HomeController(IParkSqlDal parkDAL, IForecastSqlDal forecastDAL)
 {
     this.parkDAL     = parkDAL;
     this.forecastDAL = forecastDAL;
 }