public EmpresaController(IEmpresaServicio empresaServicio, IHelperDireccion helperDireccion, IHelperPais helperPais, IHelperLocalidad helperLocalidad, IHelperProvincia helperProvincia)
 {
     _empresaServicio = empresaServicio;
     _helperDireccion = helperDireccion;
     _helperPais      = helperPais;
     _helperLocalidad = helperLocalidad;
     _helperProvincia = helperProvincia;
 }
 public EstablecimientoController(IEstablecimientoServicio establecimientoServicio, IHelperDireccion helperDireccion, IHelperLocalidad helperLocalidad, IHelperProvincia helperProvincia, IHelperPais helperPais)
 {
     _establecimientoServicio = establecimientoServicio;
     _helperDireccion         = helperDireccion;
     _helperLocalidad         = helperLocalidad;
     _helperProvincia         = helperProvincia;
     _helperPais = helperPais;
 }
예제 #3
0
 public DomicilioController(IHelperLocalidad helperLocalidad)
 {
     _helperLocalidad = helperLocalidad;
 }