示例#1
0
 public IssueController(IIssueService IssueService, INotificationMessageSubsystem nms)
 {
     _IssueService = IssueService;
     NMS           = nms;
 }
示例#2
0
 public ProjectController(IProjectService projectService, INotificationMessageSubsystem nms)
 {
     _projectService = projectService;
     NMS             = nms;
 }
 public NotificationMessageSubsystemController(IConfiguration configuration, IUserService userService, INotificationMessageSubsystem notificationMessageSubsystem)
 {
     _config      = configuration;
     _userService = userService;
     _notificationMessageSubsystem = notificationMessageSubsystem;
 }