Beispiel #1
0
        public SearchBuzzerCommandResult Search([FromQuery] string term)
        {
            SearchBuzzerCommand command = new SearchBuzzerCommand();

            command.SetTerm(term ?? string.Empty);

            return(Execute <SearchBuzzerCommand, SearchBuzzerCommandResult>(command));
        }