Example #1
0
 public TicketsController(ITicketCollection ticketColl, ICommentCollection commentColl, IUserCollection userColl, IUser user, ITicket ticket, IComment comment)
 {
     _ticketColl  = ticketColl;
     _commentColl = commentColl;
     _userColl    = userColl;
     _user        = user;
     _ticket      = ticket;
     _comment     = comment;
 }
 public HomeController(ILogger <HomeController> logger, ITicketCollection ticketCollection, IUserCollection userCollection)
 {
     _logger           = logger;
     _ticketCollection = ticketCollection;
     _userCollection   = userCollection;
 }