Exemple #1
0
 public AbstractMvcController(ILogger <AbstractMvcController> logger,
                              IFlashService flash, IMessageIntegrity messageIntegrity)
 {
     _logger           = logger;
     _flash            = flash;
     _messageIntegrity = messageIntegrity;
 }
Exemple #2
0
 public ErrorHandling(RequestDelegate next, IFlashService flash, IMessageIntegrity messageIntegrity, ILogger <ErrorHandling> logger)
 {
     this.next             = next;
     this.flash            = flash;
     this.logger           = logger;
     this.messageIntegrity = messageIntegrity;
 }
Exemple #3
0
 public FlashMessagesTagHelper(IFlashService flashService)
 {
     _flashService = flashService;
 }
 public AttachmentsController(TimelineRepository repo, IFlashService flash)
 {
     _repo  = repo;
     _flash = flash;
 }
Exemple #5
0
 public TimelinesController(TimelineRepository repo, IFlashService flash)
 {
     _flash = flash;
     _repo  = repo;
 }