public void GetMoreData()
        {
            this.GetMoreDataCalled = true;
            DynamicWorkRequest dwr = new DynamicWorkRequest();

            dwr.limit      = this.itemCountOfPage;
            dwr.moduleType = (int)this.moduleType;
            dwr.page       = this.currentPage;
            dwr.tiket      = this.sessionService.Ticket;
            dwr.uid        = this.staff.Uid;
            this.connection.Send(PacketType.OA_DYNAMIC_WORK, dwr);
        }
 public void GetMoreData()
 {
     this.GetMoreDataCalled = true;
     DynamicWorkRequest dwr = new DynamicWorkRequest();
     dwr.limit = this.itemCountOfPage;
     dwr.moduleType = (int)this.moduleType;
     dwr.page = this.currentPage;
     dwr.tiket = this.sessionService.Ticket;
     dwr.uid = this.staff.Uid;
     this.connection.Send(PacketType.OA_DYNAMIC_WORK, dwr);
 }