コード例 #1
0
 public LmsController(IReturnGoodsService returnGoodsService,
                      IUserService userService,
                      IWorkContext workContext,
                      IFeeManageService feeManageService,
                      IAuthenticationService authenticationService,
                      IFinancialService financialService)
 {
     _returnGoodsService    = returnGoodsService;
     _userService           = userService;
     _workContext           = workContext;
     _feeManageService      = feeManageService;
     _authenticationService = authenticationService;
     _financialService      = financialService;
 }
コード例 #2
0
 public TestController(IReturnGoodsService returnGoodsService, IUserService userService)
 {
     _returnGoodsService = returnGoodsService;
     _userService        = userService;
 }