Пример #1
0
 public IdentAuthController(IFunongbaoService funongbaoService, IMobileCodeService mobileCodeService
                            , IMpUserService mpUserservice)
 {
     _funongbaoService  = funongbaoService;
     _mobileCodeService = mobileCodeService;
     _mpUserservice     = mpUserservice;
 }
Пример #2
0
 public PosController(IPosAuthService posAuthService, IPosApplyService posApplyService,
                      IMobileCodeService mobileCodeService, IPosService posService)
 {
     _posAuthService    = posAuthService;
     _posApplyService   = posApplyService;
     _mobileCodeService = mobileCodeService;
     _posService        = posService;
 }
Пример #3
0
 public BankLoanController(ILoanService loanService, IMpUserService mpUserService, IMobileCodeService mobileCodeService)
 {
     this._loanService       = loanService;
     this._mpUserService     = mpUserService;
     this._mobileCodeService = mobileCodeService;
 }
Пример #4
0
 public WebBaseController()
 {
     this._mpUserService     = EngineContext.Current.Resolve <IMpUserService>();
     this._mobileCodeService = EngineContext.Current.Resolve <IMobileCodeService>();
 }