public MotorInferencia(IReglaRepository reglasRepository, IAutorizacionRepository autorizacionRepository, IConsumidoService repository)
 {
     this.reglasRepository = reglasRepository;
     this.autorizacionRepository = autorizacionRepository;
     this.repository = repository;
 }
Exemple #2
0
 public ReglaService(IReglaRepository _iReglaServiceRepository, IReglaUtil _iReglaUtil)
 {
     this.iReglaServiceRepository = _iReglaServiceRepository;
     this.iReglaUtil = _iReglaUtil;
 }