public InventaireController(IInventaireService inventaireService, IMaterielService materielService, IEvenementService evenementService, ILoggerService logService)
 {
     this.inventaireService = inventaireService;
     this.materielService   = materielService;
     this.evenementService  = evenementService;
     this.logService        = logService;
 }
 public TicketIncidentController(ITicketIncidentService ticketService, IInventaireService inventaireService, IBlocInventaireService blocInventaireService, IMaterielService materielService, ILoggerService logService, ISelectListHelper selectListHelper)
 {
     this.ticketService         = ticketService;
     this.inventaireService     = inventaireService;
     this.blocInventaireService = blocInventaireService;
     this.materielService       = materielService;
     this.logService            = logService;
     this.selectListHelper      = selectListHelper;
 }
 public StockMaterielController(IStockMaterielService stockMaterielService, IInventaireService inventaireService, IBlocInventaireService blocInventaireService, IMaterielService materielService, ITypeMaterielService typeMaterielService, ISelectListHelper selectListHelper, ILoggerService logService)
 {
     this.stockMaterielService  = stockMaterielService;
     this.inventaireService     = inventaireService;
     this.blocInventaireService = blocInventaireService;
     this.materielService       = materielService;
     this.typeMaterielService   = typeMaterielService;
     this.selectListHelper      = selectListHelper;
     this.logService            = logService;
 }
 }                                                 // Liste des familles d'articles qui dont tous les articles ont du stock
 public InventaireController(ApplicationDbContext context
                             , UserManager <IdentityUser> user_manager
                             , IInventaireService service_inventaire
                             , IInventaireLigneService service_inventaire_ligne
                             , IStockService service_stock
                             , IArticleFamilleService service_article_famille)
 {
     _context                  = context;
     _user_manager             = user_manager;
     _service_inventaire       = service_inventaire;
     _service_inventaire_ligne = service_inventaire_ligne;
     _service_stock            = service_stock;
     _service_article_famille  = service_article_famille;
 }
Exemple #5
0
 public ValidationInventaireController(IValidationInventaireService validationService, IInventaireService inventaireService, ILoggerService logService)
 {
     this.validationService = validationService;
     this.inventaireService = inventaireService;
     this.logService        = logService;
 }
Exemple #6
0
 public CreationInventaireController(IInventaireService inventaireService, IBlocInventaireService blocService, IMaterielService materielService)
 {
     this.inventaireService = inventaireService;
     this.blocService       = blocService;
     this.materielService   = materielService;
 }
Exemple #7
0
 public BlocInventaireController(IBlocInventaireService blocInventaireService, IInventaireService inventaireService, ILoggerService logService)
 {
     this.blocInventaireService = blocInventaireService;
     this.inventaireService     = inventaireService;
     this.logService            = logService;
 }