コード例 #1
0
 public StockRoomChangesController(
     IUserContext userContext,
     IStockRoomsService stockRoomsService,
     IStockRoomChangesService stockRoomChangesService)
     : base(userContext)
 {
     _stockRoomsService       = stockRoomsService;
     _stockRoomChangesService = stockRoomChangesService;
 }
コード例 #2
0
 public StockRoomsController(IUserContext userContext, IStockRoomsService stockRoomsService)
     : base(userContext)
 {
     _userContext       = userContext;
     _stockRoomsService = stockRoomsService;
 }