本文整理汇总了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;
}
示例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;
}
示例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;
}
示例4: AdminUnitController
public AdminUnitController(IAdminUnitService adminUnitService, IUserProfileService userProfileService,
IDispatchAllocationService dispatchAllocationService)
{
_adminUnitService = adminUnitService;
_userProfileService = userProfileService;
_dispatchAllocationService = dispatchAllocationService;
}
示例5: CurrentHubController
//
// GET: /CurrentWarehouse/
public CurrentHubController(IUserProfileService userProfileService,
IUserHubService userHubService)
: base(userProfileService)
{
_userProfileService = userProfileService;
_userHubService = userHubService;
}
示例6: EventsController
public EventsController(IUserProfileService profileService, IEventService eventService, IFacebookService facebookService, IMediaService mediaService)
{
_profileService = profileService;
_eventService = eventService;
_facebookService = facebookService;
_mediaService = mediaService;
}
示例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;
}
示例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;
}
示例9: AccountsController
public AccountsController(IAccountRepository accountRepository, INotificationService notificationService, IAccountsSettingsService accountsSettingsService, IUserProfileService userProfileService)
{
this.accountRepository = accountRepository;
this.notificationService = notificationService;
this.accountsSettingsService = accountsSettingsService;
this.userProfileService = userProfileService;
}
示例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;
}
示例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;
}
示例12: FriendController
public FriendController(IUserService userService, IFriendService friendService,
IUserProfileService profileService)
{
_userService = userService;
_friendService = friendService;
_profileService = profileService;
}
示例13: WorkFlowLevelController
public WorkFlowLevelController(IWorkFlowSetupService workFlowSetupService,
IUserProfileService userProfileService, IUtilityService utilityService,
IWorkflowService workFlowService) : base(userProfileService,utilityService)
{
_workFlowSetupService = workFlowSetupService;
_workFlowService = workFlowService;
}
示例14: FDPController
public FDPController(IFDPService FDPServiceParam,
IAdminUnitService adminUnitService,
IUserProfileService userProfileService)
: base(userProfileService)
{
this._FDPService = FDPServiceParam;
_adminUnitService = adminUnitService;
}
示例15: CommodityController
//
// GET: /Commodity/
public CommodityController(ICommodityTypeService commodityTypeService,
ICommodityService commodityService,
IUserProfileService userProfileService)
: base(userProfileService)
{
_commodityTypeService = commodityTypeService;
_commodityService = commodityService;
}