public ProduitsController(IProduitService produitService, ILaboratoireService laboService, IStockService stockService)
        {
            this.produitService = produitService;

            this.laboService  = laboService;
            this.stockService = stockService;
        }
 public CommandeController(IProduitService produitService, ILaboratoireService laboratoireService, ICommandeService commandeService, IStockService stockService)
 {
     this.produitService     = produitService;
     this.laboratoireService = laboratoireService;
     this.commandeService    = commandeService;
     this.stockService       = stockService;
 }
Exemple #3
0
 public LaboratoireController(ILaboratoireService laboService)
 {
     this.laboService = laboService;
 }