Exemplo n.º 1
0
 public RepositoryBase(TravelApiContext travelApiContext)
 {
     this.TravelApiContext = travelApiContext;
 }
Exemplo n.º 2
0
 public ReviewsController(TravelApiContext db, IUriService uriService)
 {
     _db             = db;
     this.uriService = uriService;
 }
Exemplo n.º 3
0
 public RepositoryWrapper(TravelApiContext travelApiContext)
 {
     _travelApiContext = travelApiContext;
 }
Exemplo n.º 4
0
 public UserService(IOptions <AppSettings> appSettings, TravelApiContext db)
 {
     _appSettings = appSettings.Value;
     _users       = db;
 }
 public DestinationsController(TravelApiContext db)
 {
     _db = db;
 }
Exemplo n.º 6
0
 public ReviewsController(TravelApiContext db)
 {
     _db = db;
 }
 public LocationsController(TravelApiContext db)
 {
     _db = db;
 }
Exemplo n.º 8
0
 public UsersController(TravelApiContext db, IUserService userService)
 {
     _db          = db;
     _userService = userService;
 }
 public PlacesController(TravelApiContext db)
 {
     _db = db;
 }
Exemplo n.º 10
0
 public CitiesController(TravelApiContext db)
 {
     _db = db;
 }
Exemplo n.º 11
0
 public ReviewRepository(TravelApiContext repositoryContext)
     : base(repositoryContext)
 {
 }
Exemplo n.º 12
0
 public DestinationRepository(TravelApiContext repositoryContext)
     : base(repositoryContext)
 {
 }
Exemplo n.º 13
0
 public UserService(IOptions <AppSettings> appSettings, TravelApiContext context)
 {
     _appSettings = appSettings.Value;
     _context     = context;
 }
Exemplo n.º 14
0
 public RatingsController(TravelApiContext db)
 {
     _db = db;
 }