Exemplo n.º 1
0
 public RejectionsController(
     IMapper mapper,
     HousingContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemplo n.º 2
0
 public PropertiesController(
     IMapper mapper,
     HousingContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemplo n.º 3
0
 public RegisterPage(
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     HousingContext context)
 {
     _mapper      = mapper;
     _appSettings = appSettings.Value;
     _context     = context;
 }
Exemplo n.º 4
0
 public AppUsersController(
     IMapper mapper,
     IOptions <AppSettings> appSettings,
     HousingContext context)
 {
     _mapper      = mapper;
     _appSettings = appSettings.Value;
     _context     = context;
 }
Exemplo n.º 5
0
 public ImagesController(HousingContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public HousingUserRepository(HousingContext context) : base(context)
 {
 }
 public HousingResidentRepository(HousingContext context) : base(context)
 {
 }
Exemplo n.º 8
0
 public CartHousesRepository(HousingContext context) : base(context)
 {
 }
Exemplo n.º 9
0
 public BaseRepository(HousingContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public HousingCommentsRepository(HousingContext context) : base(context)
 {
 }