public CommentsController(SNContext context, IAuthorizationService authorizationService,
                           IMessageSender sender)
 {
     _context = context;
     _authorizationService = authorizationService;
     _sender = sender;
 }
Exemple #2
0
 public PostsController(SNContext context, IAuthorizationService authorizationService)
 {
     _context = context;
     this.authorizationService = authorizationService;
 }