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 PhotoStoriesCommentsController(IPhotoStoryCommentService photoStoryCommentService, IPhotoStoryService photoStoryService)
 {
     this.photoStoryCommentService = photoStoryCommentService;
     this.photoStoryService        = photoStoryService;
 }