Exemplo n.º 1
0
 public FacturaService(IFacturaRepository _facturaRepository,
                       IProductoRepository _productoRepository,
                       IPreventaRepository _preventaRepository)
 {
     facturaRepository  = _facturaRepository;
     productoRepository = _productoRepository;
     preventaRepository = _preventaRepository;
 }
Exemplo n.º 2
0
 public PreventaService(IPreventaRepository _preventaRepository)
 {
     preventaRepository = _preventaRepository;
 }