// Angular Core
import { Component, Input, OnInit } from '@angular/core';

// Third Party
import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap';

@Component({
  standalone: false,
  selector: 'app-remove-all-products',
  templateUrl: './remove-all-products.component.html',
  styleUrls: ['./remove-all-products.component.scss']
})
export class RemoveAllProductsComponent implements OnInit {
  @Input() supplier!: any
  @Input() removeAllProducts!: NgbModalRef
  @Input() removeAllClickNo!: () => void
  @Input() removeAllClickOk!: (supplier: any) => void

  constructor() { }

  ngOnInit(): void {
  }

}
