コード例 #1
0
 /// <summary>
 /// Constructor of BugReport controller
 /// </summary>
 /// <param name="logger">logger commponent to support logging - injected by framework</param>
 /// <param name="bugReportService">Bug report service</param>
 public RESTBugReportController(ILogger <RESTBugReportController> logger, IBugReportService bugReportService) : base(logger)
 {
     this.bugReportService = bugReportService;
 }
コード例 #2
0
 public ContactUsController(IBugReportService bugReportService)
 {
     _bugReportService = bugReportService;
 }
コード例 #3
0
 public ReportController(IBugReportService bugReportService)
 {
     this.reportService = bugReportService;
 }