예제 #1
0
        public GroupForm(IWebQQ webqq, IQQDbContext context, GroupEntity groupEntity)
            : this()
        {
            this.webqq = webqq;
            this.me = webqq.CurrentUser;
            this.db = context;
            this.groupEntity = groupEntity;

            InitGroupUI();
        }
예제 #2
0
 public BadWordsRule(IWebQQ webqq, ConfigManager config)
     : base(webqq, config)
 {
 }
예제 #3
0
 public JoinRequestRule(IWebQQ webqq, ConfigManager config)
     : base(webqq, config)
 {
 }
예제 #4
0
파일: BaseRule.cs 프로젝트: FormatD/qqrobot
 public BaseRule(IWebQQ webqq,ConfigManager config)
 {
     this.webqq = webqq;
     this.config = config;
     InitRule();
 }
예제 #5
0
 public BlackListRule(IWebQQ webqq, ConfigManager config)
     : base(webqq, config)
 {
 }