• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# IUserProfileService类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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


示例16: AdminController

 public AdminController(IUserProfileService userProfileService, IUserRoleService userRoleService, IRoleService roleService, IUserHubService userHubService, IHubService hubService)
 {
     _userProfileService = userProfileService;
     _userRoleService = userRoleService;
     _roleService = roleService;
     _userHubService = userHubService;
     _hubService = hubService;
 }
开发者ID:FishAbe,项目名称:cats-hub-module,代码行数:8,代码来源:AdminController.cs


示例17: StockStatusController

 public StockStatusController(IUserProfileService userProfileService,
      ICommodityService commodityService, IHubService hubService)
     : base(userProfileService)
 {
     _userProfileService = userProfileService;
      _commodityService = commodityService;
      _hubService = hubService;
 }
开发者ID:robela,项目名称:cats,代码行数:8,代码来源:StockStatusController.cs


示例18: UserWarehouseController

 public UserWarehouseController(IUserHubService userHubService, 
      IHubService hubService, 
      IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._userHubService = userHubService;
      this._hubService = hubService;
      this._userProfileService = userProfileService;
 }
开发者ID:FishAbe,项目名称:cats,代码行数:9,代码来源:UserWarehouseController.cs


示例19: TransactionController

 public TransactionController(ITransactionService transactionService,
      ILedgerService ledgerService, ICommodityService commodityService,
      IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._transactionService = transactionService;
      this._ledgerService = ledgerService;
      this._commodityService = commodityService;
 }
开发者ID:FishAbe,项目名称:cats,代码行数:9,代码来源:TransactionController.cs


示例20: UserController

 public UserController(IUserProfileService userProfileService, IUserFancyAppService userFancyAppService
         , IAppService appService, IRoleService roleService, IRoleAppService roleAppService
     )
 {
     this._userProfileService = userProfileService;
     this._userFancyAppService = userFancyAppService;
     this._appService = appService;
     this._roleService = roleService;
     this._roleAppService = roleAppService;
 }
开发者ID:nikolasx,项目名称:R2.Halo,代码行数:10,代码来源:UserController.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IUserRepository类代码示例发布时间:2022-05-24
下一篇:
C# IUserProfileRepository类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap