public BeginPutBlob(CHBaseClient client, RecordReference record)
     : base(client)
 {
     if (record == null)
     {
         throw new ArgumentNullException("record");
     }
     m_record = record;
 }
        public RemoveThings(CHBaseClient client, RecordReference record, RequestBody body)
            : base(client)
        {
            if (record == null)
            {
                throw new ArgumentNullException("record");
            }
            if (body == null)
            {
                throw new ArgumentNullException("body");
            }

            m_record = record;
            m_body = body;
        }
 internal RecordImpl(Record record, string personID)
 {
     m_record = record;
     m_personID = personID;
     m_recordRef = new RecordReference(personID, m_record.ID);
 }