public SurveyController(ISurveySqlDAL dal, IParkSqlDAL parkDal)
 {
     this.dal     = dal;
     this.parkDal = parkDal;
 }
Exemple #2
0
 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;
 }