コード例 #1
0
 public FollowerController(
     IUserService userService,
     IFollowerService followerService,
     ITempDataService tempDataService)
 {
     _userService     = userService;
     _followerService = followerService;
     _tempDataService = tempDataService;
 }
コード例 #2
0
 public CollectionController(
     ICollectionService collectionService,
     ICollectionItemDetailService collectionItemDetailService,
     ICollectionSubscriberService collectionSubscriberService,
     ITempDataService tempDataService)
 {
     _collectionService           = collectionService;
     _collectionItemDetailService = collectionItemDetailService;
     _collectionSubscriberService = collectionSubscriberService;
     _tempDataService             = tempDataService;
 }
 public MessageContainerFactory(IHttpContextAccessor httpContextAccessor, ITempDataService tempDataWrapper)
 {
     _httpContextAccessor = httpContextAccessor;
     _tempDataWrapper     = tempDataWrapper;
 }
コード例 #4
0
 public DocumentSignatureController(IWebHostEnvironment appEnvironment, ISignature signature, ITempDataService tempDataService)
 {
     _appEnvironment  = appEnvironment;
     _signature       = signature;
     _tempDataService = tempDataService;
 }
コード例 #5
0
 public AccountController(IUserService userService, ITempDataService tempDataService)
 {
     _userService     = userService;
     _tempDataService = tempDataService;
 }
コード例 #6
0
 public NotificationContainer(ITempDataService tempDataWrapper)
 {
     _tempDataWrapper = tempDataWrapper;
 }
コード例 #7
0
ファイル: SurveyController.cs プロジェクト: babarmahmood/CQC
 public SurveyController(ILightFeedbackService lightFeedbackService,
                         ITempDataService tempDataService)
 {
     _lightFeedbackService = lightFeedbackService;
     _tempDataService      = tempDataService;
 }
コード例 #8
0
 public HomeController(ILightFeedbackService lightFeedbackService,
                       ITempDataService tempDataService)
 {
     _lightFeedbackService = lightFeedbackService ?? throw new ArgumentNullException(nameof(lightFeedbackService));
     _tempDataService      = tempDataService ?? throw new ArgumentNullException(nameof(tempDataService));
 }