Esempio n. 1
0
 public ExamController(ITextMatchingService service) => _service = service;
 /// <summary>
 /// Initialises a new instance of the TextMatchingController class.
 /// </summary>
 public TextMatchingController(ITextMatchingService textMatchingService)
 {
     _textMatchingService = textMatchingService;
 }
Esempio n. 3
0
 public static ExamController GetTextController(ITextMatchingService service) => new ExamController(service);