示例#1
0
 public StockInController(IAppEmplacementService EmplacementAppService, IAppMagasinService MagasinAppService, IAppStockInService StockInAppService, IAppPieceRechangeService PieceRechangeAppService, IAppPersonnelService PersonnelAppService, IAppFournisseurService FournisseurAppService)
 {
     _MagasinAppService       = MagasinAppService;
     _StockInAppService       = StockInAppService;
     _PieceRechangeAppService = PieceRechangeAppService;
     _PersonnelAppService     = PersonnelAppService;
     _FournisseurAppService   = FournisseurAppService;
     _EmplacementAppService   = EmplacementAppService;
 }
示例#2
0
 public MagasinController(IAppMagasinService MagasinAppService, IAppEmplacementService EmplacementAppService)
 {
     _MagasinAppService     = MagasinAppService;
     _EmplacementAppService = EmplacementAppService;
 }