コード例 #1
0
 public HomeController(ISurveySqlDal surveyDal, IWeatherSqlDal weatherDal, IParksSqlDal parkDal)
 {
     this.surveyDal  = surveyDal;
     this.weatherDal = weatherDal;
     this.parkDal    = parkDal;
 }
コード例 #2
0
 public SurveyController(ISurveySqlDal surveyDAL, IParkSqlDal parkDAL)
 {
     this.surveyDAL = surveyDAL;
     this.parkDAL = parkDAL;
 }