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