示例#1
0
 /// <summary>
 /// Finds a registered phrase in the repository
 /// </summary>
 /// <param name="text">The phrase text</param>
 /// <returns>The registered phrase, if found; otherwise null</returns>
 public RegisteredPhrase FindPhrase
 (
     string text
 )
 {
     return(_phraseRepository.FindPhrase(text));
 }