コード例 #1
0
 public ReporteService(IReporteRepository reporteRepository)
 {
     this._reporteRepository = reporteRepository;
 }
コード例 #2
0
 public ReporteService(IReporteRepository reporteRepository, ILoggerManager logger, IMapper mapper)
 {
     this._reporteRepository = reporteRepository;
     _logger = logger;
     _mapper = mapper;
 }
コード例 #3
0
 public ReporteAppService()
 {
     _ReporteRepository = new ReporteRepository();
 }