Example #1
0
 public UserRepository(
     IOptions <AppSettings> appSettings,
     FarTrekDbContext context,
     IMapper mapper) : base(context)
 {
     _appSettings = appSettings.Value;
     _mapper      = mapper;
 }
Example #2
0
 public ReservationGuestsRepository(FarTrekDbContext context) : base(context)
 {
 }
Example #3
0
 public Repository(FarTrekDbContext context)
 {
     _context = context;
 }
Example #4
0
 public RoomRepository(FarTrekDbContext context) : base(context)
 {
 }
Example #5
0
 public HotelRepository(FarTrekDbContext context) : base(context)
 {
 }
Example #6
0
 public GuestRepository(FarTrekDbContext context) : base(context)
 {
 }