Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public NotificationsController(INotifycations notifycations)
 {
     _notifycations = notifycations;
 }
Exemplo n.º 3
0
 public ModderatorController(IUsers user, ITasks task, INotifycations notifycations)
 {
     _user          = user;
     _task          = task;
     _notifycations = notifycations;
 }