public StockArrivalChangesController(
     IUserContext userContext,
     IStockArrivalsService stockArrivalsService,
     IStockArrivalChangesService stockArrivalChangesService)
     : base(userContext)
 {
     _stockArrivalChangesService = stockArrivalChangesService;
     _stockArrivalsService       = stockArrivalsService;
 }
Exemplo n.º 2
0
 public StockArrivalsController(IUserContext userContext, IStockArrivalsService stockArrivalsService)
     : base(userContext)
 {
     _userContext          = userContext;
     _stockArrivalsService = stockArrivalsService;
 }