public CommentsManager(
     IAuthorizationService authorizationService,
     CosmosCommentsRepository commentsRepository)
 {
     _authorizationService = authorizationService;
     _commentsRepository   = commentsRepository;
 }
Пример #2
0
 public CommentsManager(
     IAuthorizationService authorizationService,
     CosmosCommentsRepository commentsRepository,
     NotificationManager notificationManager)
 {
     _authorizationService = authorizationService;
     _commentsRepository   = commentsRepository;
     _notificationManager  = notificationManager;
 }