Example #1
0
 public HomeController(ICityService cityservice, IUserService userservice, ICommentService commentService)
 {
     _db             = new GeziDbContext();
     _cityService    = cityservice;
     _userService    = userservice;
     _commentService = commentService;
 }
Example #2
0
 public AdminController()
 {
     _db = new GeziDbContext();
 }