public SurveyController(ISurveySqlDAL dal, IParkSqlDAL parkDal) { this.dal = dal; this.parkDal = parkDal; }
public SurveyController(ISurveySqlDAL surveySqlDAL, IParkSqlDAL parkSqlDAL) { this.surveySqlDAL = surveySqlDAL; this.parkSqlDAL = parkSqlDAL; }
public SurveyController() { surveyDAL = new SurveySQLDAL(ConfigurationManager.ConnectionStrings["NPGeekConnectionString"].ConnectionString); }
public SurveyController(ISurveySqlDAL dal) { this.dal = dal; }