Beispiel #1
0
 public RejectionsController(
     IMapper mapper,
     HousingContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Beispiel #2
0
 public PropertiesController(
     IMapper mapper,
     HousingContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
 public RegisterPage(
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     HousingContext context)
 {
     _mapper      = mapper;
     _appSettings = appSettings.Value;
     _context     = context;
 }
 public AppUsersController(
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     HousingContext context)
 {
     _mapper      = mapper;
     _appSettings = appSettings.Value;
     _context     = context;
 }
 public ImagesController(HousingContext context)
 {
     _context = context;
 }
 public HousingUserRepository(HousingContext context) : base(context)
 {
 }
 public HousingResidentRepository(HousingContext context) : base(context)
 {
 }
 public CartHousesRepository(HousingContext context) : base(context)
 {
 }
Beispiel #9
0
 public BaseRepository(HousingContext context)
 {
     _context = context;
 }
 public HousingCommentsRepository(HousingContext context) : base(context)
 {
 }