Пример #1
0
        public int amount_one    = 0; //не реализ.

        public MessageSender()
        {
            _getAuth          = new API.GetAuth();
            _sendMsgFromGroup = new API.SendMsgFromGroup(_getAuth);
            _user             = new User();
            _getGroupUsersId  = new API.GetGroupUsersId(_getAuth);
        }
Пример #2
0
        public Receiver(FORM.MainForm mainForm)
        {
            this._mainForm   = mainForm;
            _getAuth         = new API.GetAuth();
            _controlForm     = new FORM.ControlForm(_mainForm);
            _readerAllEvents = new API.ReaderAllEvents(_getAuth, _controlForm);

            _outChatMsg = new OutChatMsg();
            _serviceMsg = new ServiceMsg();
            _commonMsg  = new CommonMsg();
            _user       = new User();
        }
Пример #3
0
 public SendMsgFromGroup(API.GetAuth GetAuth)
 {
     this._GetAuth = GetAuth;
 }
Пример #4
0
 public GetGroupUsersId(API.GetAuth GetAuth)
 {
     this._GetAuth = GetAuth;
 }
Пример #5
0
 public ReaderAllEvents(API.GetAuth GetAuth, FORM.ControlForm controlForm)
 {
     this._GetAuth     = GetAuth;
     this._controlForm = controlForm;
 }