コード例 #1
0
 public UserProfileService(LoadshopDataContext context,
                           IMapper mapper,
                           ICarrierService carrierService,
                           ICommonService commonService,
                           ISecurityService securityService,
                           IUserContext userContext,
                           ISMSService smsService,
                           IAgreementDocumentService agreementDocumentService)
 {
     _context                  = context;
     _mapper                   = mapper;
     _carrierService           = carrierService;
     _commonService            = commonService;
     _securityService          = securityService;
     _userContext              = userContext;
     _smsService               = smsService;
     _agreementDocumentService = agreementDocumentService;
 }
コード例 #2
0
 public AgreementsController(IAgreementDocumentService agreementDocumentService)
 {
     this.agreementDocumentService = agreementDocumentService;
 }