コード例 #1
0
 public List <Poll> GetPolls(int chatId, string searchFor = null)
 {
     return(dBHandler.GetPolls(chatId, searchFor: searchFor));
 }
コード例 #2
0
 public PollContainer(DBHandler dBHandler, Strings strings)
 {
     this.dBHandler = dBHandler;
     this.strings   = strings;
     this.pollDB    = dBHandler.GetPolls();
 }