public DeletePersonalDataModel( UserManager <PhotographyAddictedUser> userManager, SignInManager <PhotographyAddictedUser> signInManager, ILogger <DeletePersonalDataModel> logger, IImageCommentService imageComments, IThemeCommentService themeComments, INewCommentService newComments, IPhotoStoryCommentService photoStoryComment, IConversationService conversationService, IMessageService messageService, IImageService imageService) { _userManager = userManager; _signInManager = signInManager; _logger = logger; this.imageComments = imageComments; this.themeComments = themeComments; this.newComments = newComments; this.photoStoryComment = photoStoryComment; this.conversationService = conversationService; this.messageService = messageService; this.imageService = imageService; }
public ThemesCommentsController(IThemeCommentService themeCommentService, IThemeService themeService) { this.themeService = themeService; this.themeCommentService = themeCommentService; }