Exemple #1
0
 public PlanTripController(IUserDAL userDAL, ILandmarkDAL landmarkDAL, ITripDAL tripDAL) 
     : base(userDAL)
 {
     this.userDAL = userDAL;
     this.landmarkDAL = landmarkDAL;
     this.tripDAL = tripDAL;
 }
Exemple #2
0
 public ThingsToDoController(IUserDAL userDAL, ILandmarkDAL landmarkDAL) : base(userDAL)
 {
     this.userDAL     = userDAL;
     this.landmarkDAL = landmarkDAL;
 }
 public HomeController(IAccountDAL _acctDAL, ILandmarkDAL _landDAL, IItineraryDAL _itinDAL)
 {
     this.acctDAL = _acctDAL;
     this.landDAL = _landDAL;
     this.itinDAL = _itinDAL;
 }
 public LandmarkController(ILandmarkDAL landmarkDAL, IReviewDAL reviewDAL, IVoteDAL voteDAL)
 {
     _landmarkDAL = landmarkDAL;
     _reviewDAL   = reviewDAL;
     _voteDAL     = voteDAL;
 }
Exemple #5
0
 public NewLandmarkController(ILandmarkDAL landmarkDAL)
 {
     _landmarkDAL = landmarkDAL;
 }
Exemple #6
0
 public ItineraryController(IItineraryDAL dal, IAccountDAL _accountDAL, ILandmarkDAL _landmarkDAL)
 {
     this.itineraryDAL = dal;
     this.landmarkDAL  = _landmarkDAL;
     this.accountDAL   = _accountDAL;
 }
Exemple #7
0
 public LandmarkController(ILandmarkDAL _landmarkDAL)
 {
     this.landmarkDAL = _landmarkDAL;
 }
Exemple #8
0
 public void Setup()
 {
     _landmarkDal = new LandmarkDAL(CityToursDbConnectionString);
 }
Exemple #9
0
 public ReviewController(IReviewDAL reviewDAL, ILandmarkDAL landmarkDAL)
 {
     _reviewDAL   = reviewDAL;
     _landmarkDAL = landmarkDAL;
 }