Example #1
0
 public HomeController(ITouristGuideDB dbContext)
 {
     db = dbContext;
 }
Example #2
0
 public NewsController(ITouristGuideDB dbContext)
 {
     db = dbContext;
 }
Example #3
0
 public HomeController()
 {
     db = new TouristGuideDB();
 }
 public AttractionRepository(ITouristGuideDB context)
 {
     this.context = context;
 }
Example #5
0
 public NewsController()
 {
     db = new TouristGuideDB();
 }
Example #6
0
 public HomeController(ITouristGuideDB dbContext)
 {
     db = dbContext;
 }
Example #7
0
 public HomeController()
 {
     db = new TouristGuideDB();
 }
 public NewsController(ITouristGuideDB dbContext)
 {
     db = dbContext;
 }
 public NewsController()
 {
     db = new TouristGuideDB();
 }
 public AttractionRepository(ITouristGuideDB context)
 {
     this.context = context;
 }