public HomeController(IPostListService postListService,
                       INewPostService newPostService,
                       IPostFindService postFindService,
                       IPostDeleteService postDeleteService,
                       INewCommentService newCommentService)
 {
     this.postListService   = postListService;
     this.newPostService    = newPostService;
     this.postFindService   = postFindService;
     this.postDeleteService = postDeleteService;
     this.newCommentService = newCommentService;
 }
 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;
 }
Beispiel #3
0
 public NewsCommentsController(INewCommentService newCommentService, INewService newService)
 {
     this.newCommentService = newCommentService;
     this.newService        = newService;
 }