Exemplo n.º 1
0
 private void menuItemPayerIDs_Click(object sender,EventArgs e)
 {
     if(!Security.IsAuthorized(Permissions.Setup)) {
         return;
     }
     FormElectIDs FormE=new FormElectIDs();
     FormE.IsSelectMode=false;
     FormE.ShowDialog();
     SecurityLogs.MakeLogEntry(Permissions.Setup,0,"Payer IDs");
 }
Exemplo n.º 2
0
		private void butSearch_Click(object sender,System.EventArgs e) {
			FormElectIDs FormE=new FormElectIDs();
			FormE.IsSelectMode=true;
			FormE.ShowDialog();
			if(FormE.DialogResult!=DialogResult.OK) {
				return;
			}
			textElectID.Text=FormE.selectedID.PayorID;
			FillPayor();
			//textElectIDdescript.Text=FormE.selectedID.CarrierName;
		}