public FacturaService(IFacturaRepository _facturaRepository,
                       IProductoRepository _productoRepository,
                       IPreventaRepository _preventaRepository)
 {
     facturaRepository  = _facturaRepository;
     productoRepository = _productoRepository;
     preventaRepository = _preventaRepository;
 }
 public PreventaService(IPreventaRepository _preventaRepository)
 {
     preventaRepository = _preventaRepository;
 }