public TaskController(ITasks task, ITaskAttachments taskAttachments, ITaskBids taskBids, ITaskPreWorkers taskPreWorkers, ILog log, ITaskOffers taskOffers, INotifycations notifycations, IChats chats)
 {
     _task            = task;
     _taskAttachments = taskAttachments;
     _taskBids        = taskBids;
     _taskPreWorkers  = taskPreWorkers;
     _log             = log;
     _taskOffers      = taskOffers;
     _notifycations   = notifycations;
     _chats           = chats;
 }
Exemple #2
0
 public NotificationsController(INotifycations notifycations)
 {
     _notifycations = notifycations;
 }
 public ModderatorController(IUsers user, ITasks task, INotifycations notifycations)
 {
     _user          = user;
     _task          = task;
     _notifycations = notifycations;
 }