Ejemplo n.º 1
0
 public UsuarioController(InfoHomeContext context)
 {
     _usuarioService     = new UsuariosService(context);
     _casaService        = new CasaService(context);
     _publicacionService = new PublicacionService(context);
 }
Ejemplo n.º 2
0
 public UsuariosService(InfoHomeContext infoHomeContext)
 {
     _infoHomeContext = infoHomeContext;
 }
Ejemplo n.º 3
0
 public CasaController(InfoHomeContext context)
 {
     _casaService = new CasaService(context);
 }
Ejemplo n.º 4
0
 public PublicacionController(InfoHomeContext context)
 {
     _publicacionService = new PublicacionService(context);
 }
Ejemplo n.º 5
0
 public UsuarioController(InfoHomeContext context)
 {
     _usuarioService = new UsuariosService(context);
 }
Ejemplo n.º 6
0
 public CasaService(InfoHomeContext infoHomeContext)
 {
     _infoHomeContext = infoHomeContext;
 }
Ejemplo n.º 7
0
 public PublicacionService(InfoHomeContext infoHomeContext)
 {
     _infoHomeContext = infoHomeContext;
     _imgService      = new ImagenService(infoHomeContext);
     _casaService     = new CasaService(infoHomeContext);
 }
Ejemplo n.º 8
0
 public ImagenService(InfoHomeContext infoHomeContext)
 {
     _infoHomeContext = infoHomeContext;
 }