Exemplo n.º 1
0
 public PlanTripController(IUserDAL userDAL, ILandmarkDAL landmarkDAL, ITripDAL tripDAL) 
     : base(userDAL)
 {
     this.userDAL = userDAL;
     this.landmarkDAL = landmarkDAL;
     this.tripDAL = tripDAL;
 }
Exemplo n.º 2
0
 public ThingsToDoController(IUserDAL userDAL, ILandmarkDAL landmarkDAL) : base(userDAL)
 {
     this.userDAL     = userDAL;
     this.landmarkDAL = landmarkDAL;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 5
0
 public NewLandmarkController(ILandmarkDAL landmarkDAL)
 {
     _landmarkDAL = landmarkDAL;
 }
Exemplo n.º 6
0
 public ItineraryController(IItineraryDAL dal, IAccountDAL _accountDAL, ILandmarkDAL _landmarkDAL)
 {
     this.itineraryDAL = dal;
     this.landmarkDAL  = _landmarkDAL;
     this.accountDAL   = _accountDAL;
 }
Exemplo n.º 7
0
 public LandmarkController(ILandmarkDAL _landmarkDAL)
 {
     this.landmarkDAL = _landmarkDAL;
 }
Exemplo n.º 8
0
 public void Setup()
 {
     _landmarkDal = new LandmarkDAL(CityToursDbConnectionString);
 }
Exemplo n.º 9
0
 public ReviewController(IReviewDAL reviewDAL, ILandmarkDAL landmarkDAL)
 {
     _reviewDAL   = reviewDAL;
     _landmarkDAL = landmarkDAL;
 }