示例#1
0
 public RoleProfilesController(
     IRoleProfileService roleProfileService,
     ICommonService commonService,
     IFrameworkNotificationService frameworkNotificationService,
     IConfigService configService,
     ILogger <RoleProfilesController> logger,
     IConfiguration config)
 {
     this.roleProfileService           = roleProfileService;
     this.commonService                = commonService;
     this.frameworkNotificationService = frameworkNotificationService;
     this.configService                = configService;
     this.logger = logger;
     this.config = config;
 }
 public FrameworkNotificationService(
     IFrameworkService frameworkService,
     IConfigDataService configDataService,
     IEmailService emailService,
     IRoleProfileService roleProfileService,
     ISupervisorService supervisorService,
     ISelfAssessmentDataService selfAssessmentDataService
     )
 {
     this.frameworkService          = frameworkService;
     this.configDataService         = configDataService;
     this.emailService              = emailService;
     this.roleProfileService        = roleProfileService;
     this.supervisorService         = supervisorService;
     this.selfAssessmentDataService = selfAssessmentDataService;
 }