private void StreamWorker_ReturnCheckFP() { try { ReturnFPMessage mes = ProtoBuf.Serializer.DeserializeWithLengthPrefix <ReturnFPMessage>(this.streamRead, ProtoBuf.PrefixStyle.Base128); if (app.GetTrungTamHTSS().MaTTHTSS == mes.MaTT) { //app.ReceiveMessageFP(mes.FingerPrints); } } catch (Exception ex) { throw ex; } }
public void LoadData() { TrungTamHTSS tthtss = app.GetTrungTamHTSS(); if (tthtss != null) { IdTrungTam = tthtss.Id; txtMaTrungTam.Text = tthtss.MaTTHTSS; txtTenTrungTam.Text = tthtss.TenTrungTam; txtEmailTrungTam.Text = tthtss.Email; txtDiaChiTrungTam.Text = tthtss.DiaChi; txtSoDienThoaiTrungTam.Text = tthtss.SoDienThoai; txtWebsiteTrungTam.Text = tthtss.Website; } else { IdTrungTam = -1; btnSua.Text = "Tạo mới"; } }