当前位置: 首页>>代码示例>>C#>>正文


C# IUserProfileService类代码示例

本文整理汇总了C#中IUserProfileService的典型用法代码示例。如果您正苦于以下问题:C# IUserProfileService类的具体用法?C# IUserProfileService怎么用?C# IUserProfileService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


IUserProfileService类属于命名空间,在下文中一共展示了IUserProfileService类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: MeController

 public MeController(IUserService userService, IUserProfileService userProfileService, IHugService hugService, IUserAccessTokenProvider accessTokenProvider)
 {
     _userService = userService;
     _userProfileService = userProfileService;
     _hugService = hugService;
     _accessTokenProvider = accessTokenProvider;
 }
开发者ID:stawiu,项目名称:penedating,代码行数:7,代码来源:MeController.cs

示例2: ReceiveController

 public ReceiveController(IReceiveService receiveService,IGiftCertificateService giftCertificateService,
                          IReceiptAllocationService receiptAllocationService,IUserProfileService userProfileService,
                          ICommodityTypeService commodityTypeService ,IReceiveDetailService receiveDetailService,
                          ICommodityService commodityService,IStoreService storeService,ITransactionService transactionService,
                          IUnitService unitService,IShippingInstructionService shippingInstructionService,IHubService hubService,
                          ICommodityGradeService commodityGradeService,IProgramService programService,ITransporterService transporterService,
                          ICommoditySourceService commoditySourceService, IDonorService donorService)
     : base(userProfileService)
 {
     _receiveService = receiveService;
     _giftCertificateService = giftCertificateService;
     _receiptAllocationService = receiptAllocationService;
     _userProfileService = userProfileService;
     _commodityTypeService = commodityTypeService;
     _receiveDetailService = receiveDetailService;
     _commodityService = commodityService;
     _storeService = storeService;
     _transactionService = transactionService;
     _unitService = unitService;
     _shippingInstructionService = shippingInstructionService;
     _hubService = hubService;
     _commodityGradeService = commodityGradeService;
     _programService = programService;
     _transporterService = transporterService;
     _commoditySourceService=commoditySourceService;
     _donorService = donorService;
 }
开发者ID:FishAbe,项目名称:cats,代码行数:27,代码来源:ReceiveController.cs

示例3: LossesAndAdjustmentsController

 public LossesAndAdjustmentsController(IUserProfileService userProfileService,
                                         ICommodityService commodityService,
                                         IStoreService storeService,
                                         IProgramService programService,
                                         IHubService hubService,
                                         IUnitService unitService,
                                         IAdjustmentReasonService adjustmentReasonService,
                                         IAdjustmentService adjustmentService,
                                         ITransactionService transactionService,
                                         IProjectCodeService projectCodeService,
                                         IShippingInstructionService shippingInstructionService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
     _commodityService = commodityService;
     _storeService = storeService;
     _programService = programService;
     _hubService = hubService;
     _unitService = unitService;
     _adjustmentReasonService = adjustmentReasonService;
     _adjustmentService = adjustmentService;
     _TransactionService = transactionService;
     _projectCodeService = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
 }
开发者ID:robela,项目名称:cats,代码行数:25,代码来源:LossesAndAdjustmentsController.cs

示例4: AdminUnitController

 public AdminUnitController(IAdminUnitService adminUnitService, IUserProfileService userProfileService,
     IDispatchAllocationService dispatchAllocationService)
 {
     _adminUnitService = adminUnitService;
     _userProfileService = userProfileService;
     _dispatchAllocationService = dispatchAllocationService;
 }
开发者ID:edgecomputing,项目名称:cats-hub-module,代码行数:7,代码来源:AdminUnitController.cs

示例5: CurrentHubController

 //
 // GET: /CurrentWarehouse/
 public CurrentHubController(IUserProfileService userProfileService,
      IUserHubService userHubService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
      _userHubService = userHubService;
 }
开发者ID:edgecomputing,项目名称:cats,代码行数:9,代码来源:CurrentHubController.cs

示例6: EventsController

 public EventsController(IUserProfileService profileService, IEventService eventService, IFacebookService facebookService, IMediaService mediaService)
 {
     _profileService = profileService;
     _eventService = eventService;
     _facebookService = facebookService;
     _mediaService = mediaService;
 }
开发者ID:ryanerdmann,项目名称:angora,代码行数:7,代码来源:EventsController.cs

示例7: DispatchController

 public DispatchController(IDispatchAllocationService dispatchAllocationService, IDispatchService dispatchService,
     IUserProfileService userProfileService, IOtherDispatchAllocationService otherDispatchAllocationService,
     IDispatchDetailService dispatchDetailService, IUnitService unitService, ICommodityTypeService commodityTypeService,
     IProgramService programService, ITransporterService transporterService, IPeriodService periodService,
     ICommodityService commodityService, ITransactionService transactionService, IStoreService storeService,
     IAdminUnitService adminUnitService, IHubService hubService, IFDPService fdpService,
     IProjectCodeService projectCodeService, IShippingInstructionService shippingInstructionService,
     ISMSGatewayService smsGatewayService, IContactService contactService, ISMSService smsService, IReliefRequisitionService reliefRequisitionService)
     : base(userProfileService)
 {
     _dispatchAllocationService = dispatchAllocationService;
     _dispatchService = dispatchService;
     _userProfileService = userProfileService;
     _otherDispatchAllocationService = otherDispatchAllocationService;
     _dispatchDetailService = dispatchDetailService;
     _unitService = unitService;
     _commodityTypeService = commodityTypeService;
     _programService = programService;
     _transporterService = transporterService;
     _periodService = periodService;
     _commodityService = commodityService;
     _transactionService = transactionService;
     _storeService = storeService;
     _adminUnitService = adminUnitService;
     _hubService = hubService;
     _fdpService = fdpService;
     _projectCodeService = projectCodeService;
     _shippingInstructionService = shippingInstructionService;
     _smsGatewayService = smsGatewayService;
     _contactService = contactService;
     _smsService = smsService;
     _reliefRequisitionService = reliefRequisitionService;
 }
开发者ID:edgecomputing,项目名称:cats,代码行数:33,代码来源:DispatchController.cs

示例8: RequestController

 public RequestController(IRegionalRequestService reliefRequistionService,
                         IFDPService fdpService,
                         IRegionalRequestDetailService reliefRequisitionDetailService,
                         ICommonService commonService,
                         IHRDService hrdService,
                         IApplicationSettingService ApplicationSettingService,
                         IUserAccountService userAccountService,
                         ILog log,
                         IHRDDetailService hrdDetailService,
                         IRegionalPSNPPlanDetailService regionalPSNPPlanDetailService,
                         IRegionalPSNPPlanService RegionalPSNPPlanService,
     IAdminUnitService adminUnitService,
     IPlanService planService,
     IIDPSReasonTypeServices idpsReasonTypeServices, ITransactionService transactionService, INotificationService notificationService, IUserProfileService userProfileService)
 {
     _regionalRequestService = reliefRequistionService;
     _fdpService = fdpService;
     _regionalRequestDetailService = reliefRequisitionDetailService;
     _commonService = commonService;
     _hrdService = hrdService;
     _applicationSettingService = ApplicationSettingService;
     _userAccountService = userAccountService;
     _log = log;
     _HRDDetailService = hrdDetailService;
     _RegionalPSNPPlanDetailService = regionalPSNPPlanDetailService;
     _RegionalPSNPPlanService = RegionalPSNPPlanService;
     _adminUnitService = adminUnitService;
     _planService = planService;
     _idpsReasonTypeServices = idpsReasonTypeServices;
     _transactionService = transactionService;
     _notificationService = notificationService;
     _userProfileService = userProfileService;
 }
开发者ID:edgecomputing,项目名称:cats,代码行数:33,代码来源:RequestController.cs

示例9: AccountsController

 public AccountsController(IAccountRepository accountRepository, INotificationService notificationService, IAccountsSettingsService accountsSettingsService, IUserProfileService userProfileService)
 {
     this.accountRepository = accountRepository;
       this.notificationService = notificationService;
       this.accountsSettingsService = accountsSettingsService;
       this.userProfileService = userProfileService;
 }
开发者ID:JobiJoba,项目名称:Habitat,代码行数:7,代码来源:AccountsController.cs

示例10: DispatchAllocationController

 public DispatchAllocationController(IDispatchAllocationService dispatchAllocationService,
                                     IUserProfileService userProfileService,
                                     IOtherDispatchAllocationService otherDispatchAllocationService,
                                     IShippingInstructionService shippingInstructionService,
                                     IProjectCodeService projectCodeService,
                                     ITransporterService transporterService,
                                     ICommonService commonService,
                                     IAdminUnitService adminUnitService,
                                     IFDPService fdpService,
                                     IHubService hubService,
                                      ICommodityTypeService commodityTypeService)
     : base(userProfileService)
 {
     this._dispatchAllocationService = dispatchAllocationService;
     this._userProfileService = userProfileService;
     this._otherDispatchAllocationService = otherDispatchAllocationService;
     this._projectCodeService = projectCodeService;
     this._shippingInstructionService = shippingInstructionService;
     this._transporterService = transporterService;
     this._adminUnitService = adminUnitService;
     this._fdpService = fdpService;
     this._commonService = commonService;
     this._hubService = hubService;
     this._commodityTypeService = commodityTypeService;
 }
开发者ID:robi-github,项目名称:cats,代码行数:25,代码来源:DispatchAllocationController.cs

示例11: ReportsController

 public ReportsController(IDispatchService dispatchService,
      IReceiveService receiveService,
      IUserProfileService userProfileService,
      IHubService hubService,
      ITransactionService transactionService,
      ICommodityService commodityService,
      ICommodityTypeService commodityTypeService,
      IProgramService programService,
      IAdminUnitService adminUnitService,
      IDispatchAllocationService dispatchAllocationService,
      ICommoditySourceService commoditySourceService
      
      )
 {
     this._dispatchService = dispatchService;
      this._receiveService = receiveService;
      this._userProfileService = userProfileService;
      this._hubService = hubService;
      this._transactionService = transactionService;
      _commodityService = commodityService;
      _commodityTypeService = commodityTypeService;
      _programService = programService;
      _adminUnitService = adminUnitService;
      _dispatchAllocationService = dispatchAllocationService;
      _commoditySourceService = commoditySourceService;
 }
开发者ID:FishAbe,项目名称:cats,代码行数:26,代码来源:ReportsController.cs

示例12: FriendController

 public FriendController(IUserService userService, IFriendService friendService, 
     IUserProfileService profileService)
 {
     _userService = userService;
     _friendService = friendService;
     _profileService = profileService;
 }
开发者ID:MashukW,项目名称:BSU.ASP1501.FinalProject.Mashuk,代码行数:7,代码来源:FriendController.cs

示例13: WorkFlowLevelController

 public WorkFlowLevelController(IWorkFlowSetupService workFlowSetupService,
     IUserProfileService userProfileService, IUtilityService utilityService,
     IWorkflowService workFlowService) : base(userProfileService,utilityService)
 {
     _workFlowSetupService = workFlowSetupService;
     _workFlowService = workFlowService;
 
 }
开发者ID:surifoll,项目名称:git-test,代码行数:8,代码来源:WorkFlowLevelController.cs

示例14: FDPController

 public FDPController(IFDPService FDPServiceParam, 
     IAdminUnitService adminUnitService, 
     IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._FDPService = FDPServiceParam;
     _adminUnitService = adminUnitService;
 }
开发者ID:edgecomputing,项目名称:cats,代码行数:8,代码来源:FDPController.cs

示例15: CommodityController

 //
 // GET: /Commodity/
 public CommodityController(ICommodityTypeService commodityTypeService,
     ICommodityService commodityService,
     IUserProfileService userProfileService)
     : base(userProfileService)
 {
     _commodityTypeService = commodityTypeService;
     _commodityService = commodityService;
 }
开发者ID:FishAbe,项目名称:cats,代码行数:10,代码来源:CommodityController.cs


注:本文中的IUserProfileService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。