Пример #1
0
 public PosController(IPosService posService, IPosApplyService posApplyService, IMpUserService mpUserService, IPosAuthService posAuthService)
 {
     this._posService      = posService;
     this._posApplyService = posApplyService;
     _mpUserService        = mpUserService;
     _posAuthService       = posAuthService;
 }
Пример #2
0
 public PosController(IPosAuthService posAuthService, IPosApplyService posApplyService,
                      IMobileCodeService mobileCodeService, IPosService posService)
 {
     _posAuthService    = posAuthService;
     _posApplyService   = posApplyService;
     _mobileCodeService = mobileCodeService;
     _posService        = posService;
 }
Пример #3
0
 public MpUserController(IMpUserService MpUserService, IMpUserGroupService MpUserGroupService,
                         IFunongbaoApplyService funongbaoApplyService,
                         ILoanService loanService,
                         IPosApplyService posApplyService)
 {
     this.MpUserService      = MpUserService;
     this.MpUserGroupService = MpUserGroupService;
     _funongbaoApplyService  = funongbaoApplyService;
     _loanService            = loanService;
     _posApplyService        = posApplyService;
 }