Beispiel #1
0
 public ArticuloService(IRepository<Articulo> articuloRepository,
                        IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.articuloRepository = articuloRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #2
0
 public CapituloService(IRepository<Capitulo> capituloRepository,
                        IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.capituloRepository = capituloRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #3
0
 public ObraTraducidaService(IRepository<ObraTraducida> obraTraducidaRepository,
     IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.obraTraducidaRepository = obraTraducidaRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #4
0
 public ProductoService(IProductoQuerying productoQuerying, IArticuloService articuloService, ICapituloService capituloService,
     ILibroService libroService, IReporteService reporteService, IResenaService resenaService, IObraTraducidaService obraTraducidaService,
     IProyectoService proyectoService, ICursoService cursoService, ITesisDirigidaService tesisDirigidaService, IDictamenService dictamenService,
     IOrganoExternoService organoExternoService, IEventoService eventoService, IParticipacionMedioService participacionMedioService)
 {
     this.productoQuerying = productoQuerying;
     this.articuloService = articuloService;
     this.capituloService = capituloService;
     this.libroService = libroService;
     this.reporteService = reporteService;
     this.resenaService = resenaService;
     this.obraTraducidaService = obraTraducidaService;
     this.proyectoService = proyectoService;
     this.cursoService = cursoService;
     this.tesisDirigidaService = tesisDirigidaService;
     this.dictamenService = dictamenService;
     this.organoExternoService = organoExternoService;
     this.eventoService = eventoService;
     this.participacionMedioService = participacionMedioService;
 }
Beispiel #5
0
 public ReporteService(IRepository<Reporte> reporteRepository, IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.reporteRepository = reporteRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #6
0
 public ProyectoService(IRepository<Proyecto> proyectoRepository, IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.proyectoRepository = proyectoRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #7
0
 public EventoService(IRepository<Evento> eventoRepository, IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.eventoRepository = eventoRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }
Beispiel #8
0
 public LibroService(IRepository<Libro> libroRepository, IProductoQuerying productoQuerying, IFirmaService firmaService)
 {
     this.libroRepository = libroRepository;
     this.productoQuerying = productoQuerying;
     this.firmaService = firmaService;
 }