Пример #1
0
        public HomeController(ITextMatchService textMatchService)
        {
            if (textMatchService == null)
                throw new ArgumentNullException("textMatchService");

            _textMatchService = textMatchService;
        }
Пример #2
0
        public HomeController(ITextMatchService textMatchService)
        {
            if (textMatchService == null)
            {
                throw new ArgumentNullException("textMatchService");
            }

            _textMatchService = textMatchService;
        }
Пример #3
0
 public void set_up()
 {
     _textMatchService = new TextMatchService();
     _testText = "Polly put the kettle on, polly put the kettle on, polly put the kettle on we’ll all have tea";
 }
Пример #4
0
 public MatchController(ITextMatchService textMatchService)
 {
     _textMatchService = textMatchService;
 }