示例#1
0
 public QueryBuilder(IQueryCommands queryCommands, string tableOrViewName)
 {
     _queryCommandsObj = queryCommands;
     SelectFields      = new List <string>();
     Where             = new List <WhereItem>();
     AddFromTableName(tableOrViewName);
 }
示例#2
0
 public BotService(
     IQueryCommands queryCommands,
     ITemplateService templateService,
     IEventReader eventReader
     )
 {
     this.queryCommands   = queryCommands;
     this.templateService = templateService;
     this.eventReader     = eventReader;
 }
示例#3
0
 public TemplateService(IQueryCommands commands)
 {
     this.commands = commands;
 }