Beispiel #1
0
 public MainLogic(
     IChatLogic chatLogic,
     IUserLogic userLogic,
     IMessageLogic messageLogic,
     IFriendLogic friendLogic,
     INotificationLogic notificationLogic)
 {
     _chatLogic         = chatLogic;
     _userLogic         = userLogic;
     _messageLogic      = messageLogic;
     _friendLogic       = friendLogic;
     _notificationLogic = notificationLogic;
 }
Beispiel #2
0
 public CommentLogic(IRepository repository, INotificationLogic notificationLogic)
     : base(repository)
 {
     _notificationLogic = notificationLogic;
 }
 public NotificationController(INotificationLogic notificationLogic, ILogger <NotificationController> logger)
 {
     this.notificationLogic = notificationLogic;
     this.logger            = logger;
 }
Beispiel #4
0
 public FeedbackLogic(IRepository repository, INotificationLogic notificationLogic)
     : base(repository)
 {
     _notificationLogic = notificationLogic;
 }
Beispiel #5
0
 public HangFireJobInitializer(INotificationLogic notificationLogic)
 {
     _notificationLogic = notificationLogic;
 }
Beispiel #6
0
 public BoardLogic(IProjectLogic projectLogic, IUserLogic userLogic, INotificationLogic notificationLogic)
 {
     _projectLogic      = projectLogic;
     _userLogic         = userLogic;
     _notificationLogic = notificationLogic;
 }
 public GradeLogic(IRepository repository, INotificationLogic notificationLogic, IFinalGradeLogic finalGradeLogic)
     : base(repository)
 {
     _finalGradeLogic   = finalGradeLogic;
     _notificationLogic = notificationLogic;
 }
Beispiel #8
0
 public NotificationController(INotificationLogic notificationLogic, UserManager <User> userManager)
 {
     _notificationLogic = notificationLogic;
     _userManager       = userManager;
 }
Beispiel #9
0
 public NotificationController(INotificationLogic notificationLogic)
 {
     _notificationLogic = notificationLogic;
 }