Ejemplo n.º 1
0
 public SendEmailNotificationKernalService(
     IEmailNotificationSender emailNotificationSender,
     ITransactionManager transactionManager,
     ILogger <SendEmailNotificationKernalService> logger)
 {
     _emailNotificationSender = emailNotificationSender;
     _transactionManager      = transactionManager;
     _logger = logger;
 }
Ejemplo n.º 2
0
 public CommentController(ICommentService commentService,
                          IUserContext userContext, IEmailNotificationSender emailSender, IHostingEnvironment env, IPostService postService)
 {
     _commentService = commentService;
     _userContext    = userContext;
     _emailSender    = emailSender;
     _env            = env;
     _postService    = postService;
 }
Ejemplo n.º 3
0
 public PostsController(IPostService postService, IExternalPostService externalPostService,
                        IFileService fileService, IFileManager fileManager, IUserContext userContext, IEmailNotificationSender emailService,
                        ILikeService likeService, ICommentService commentService)
 {
     _postService         = postService;
     _externalPostService = externalPostService;
     _fileManager         = fileManager;
     _fileService         = fileService;
     _userContext         = userContext;
     _emailService        = emailService;
     _commentService      = commentService;
     _likeService         = likeService;
 }