示例#1
0
 public TextSearchContainer(TextSearchRequest request, TextSearchResponse response, LogController controller,
     Section section)
 {
     Request = request;
     Response = response;
     Controller = controller;
     NameMatches = new List<IRecord>();
     Section = section;
 }
 public TextSearchContainer(TextSearchRequest request, TextSearchResponse response, LogController controller,
                            Section section)
 {
     Request    = request;
     Response   = response;
     Controller = controller;
     Section    = section;
     Matches    = new Dictionary <string, Dictionary <string, List <string> > >();
     Response.SetMatchDictionary(Matches);
 }