コード例 #1
0
ファイル: MotorInferencia.cs プロジェクト: juansanti/Solution
 public MotorInferencia(IReglaRepository reglasRepository, IAutorizacionRepository autorizacionRepository, IConsumidoService repository)
 {
     this.reglasRepository = reglasRepository;
     this.autorizacionRepository = autorizacionRepository;
     this.repository = repository;
 }
コード例 #2
0
ファイル: ReglaService.cs プロジェクト: belen34/Grupo01
 public ReglaService(IReglaRepository _iReglaServiceRepository, IReglaUtil _iReglaUtil)
 {
     this.iReglaServiceRepository = _iReglaServiceRepository;
     this.iReglaUtil = _iReglaUtil;
 }