コード例 #1
0
 public IndexController(IIdentityService identityService, ICategoryService categoryService, ISendgridService sendgridService, ITokenReaderService tokenReaderService)
 {
     _identityService    = identityService;
     _categoryService    = categoryService;
     _sendgridService    = sendgridService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #2
0
 public SpotifyApiService(IHttpService httpService, ITokenReaderService tokenService, EndpointProvider endpointProvider, SerialisationSettingsProvider serialisationSettingsProvider)
 {
     HttpService      = httpService;
     TokenService     = tokenService;
     EndpointProvider = endpointProvider;
     SerialisationSettingsProvider = serialisationSettingsProvider;
 }
コード例 #3
0
 public CommentController(ICommentService commentService, ITokenReaderService tokenReaderService)
 {
     _commentService     = commentService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #4
0
 public UserService(IHttpService httpService, ITokenReaderService tokenService, EndpointProvider endpointProvider, SerialisationSettingsProvider serialisationSettingsProvider)
     : base(httpService, tokenService, endpointProvider, serialisationSettingsProvider)
 {
 }
コード例 #5
0
 public NotificationController(INotificationService service, ITokenReaderService tokenReaderService)
 {
     _service            = service;
     _tokenReaderService = tokenReaderService;
 }
コード例 #6
0
 public CategoryController(ICategoryService categoryService, ITokenReaderService tokenReaderService)
 {
     _categoryService    = categoryService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #7
0
 public UserController(IIdentityService identityService, ITokenReaderService tokenReaderService)
 {
     _identityService    = identityService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #8
0
 public ConversationController(IConversationService convService, IMessageService messageService, ITokenReaderService tokenReaderService)
 {
     _convService        = convService;
     _messageService     = messageService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #9
0
 public PostController(IPostService postService, ITokenReaderService tokenReaderService)
 {
     _postService        = postService;
     _tokenReaderService = tokenReaderService;
 }
コード例 #10
0
 public AdministrationController(IIdentityService identityService, ITokenReaderService tokenReaderService)
 {
     _identityService    = identityService;
     _tokenReaderService = tokenReaderService;
 }