private void TxtNationalityCode_TextChanged(object sender, EventArgs e) { txtCountryCode.Text = DBControllersFactory.FK(MODELS.Country, txtCountryId.Text); }
private void TxtClientId_TextChanged(object sender, EventArgs e) { txtClientName.Text = DBControllersFactory.FK(MODELS.Client, txtClientId.Text); }
private void TxtBuildingId_TextChanged(object sender, EventArgs e) { txtBuildingName.Text = DBControllersFactory.FK(MODELS.Building, txtBuildingId.Text); }
private void TxtEntityId_TextChanged(object sender, EventArgs e) { txtEntityName.Text = DBControllersFactory.FK(MODELS.Entity, txtEntityId.Text); }
private void TxtFoodTypeId_TextChanged(object sender, EventArgs e) { txtFoodTypeCode.Text = DBControllersFactory.FK(MODELS.FoodType, txtFoodTypeId.Text); }
private void TxtProfileId_TextChanged(object sender, EventArgs e) { txtProfileName.Text = DBControllersFactory.FK(MODELS.Profile, txtProfileId.Text); }
private void TxtAccommClassId_TextChanged(object sender, EventArgs e) { txtAccommClassCode.Text = DBControllersFactory.FK(MODELS.AccommClass, txtAccommClassId.Text); }
private void TxtEntitlementGroupId_TextChanged(object sender, EventArgs e) { txtEntitlementGroupName.Text = DBControllersFactory.FK(MODELS.EntitlementGroup, txtEntitlementGroupId.Text); RequeryEntitlements(); }
private void TxtCurrencyId_TextChanged(object sender, EventArgs e) { txtCurrencyCode.Text = DBControllersFactory.FK(MODELS.Currency, txtCurrencyId.Text); }
private void TxtBillingCategoryId_TextChanged(object sender, EventArgs e) { txtBillingCategoryCode.Text = DBControllersFactory.FK(MODELS.BillingCategory, txtBillingCategoryId.Text); }
private void TxtVATId_TextChanged(object sender, EventArgs e) { txtVATCode.Text = DBControllersFactory.FK(MODELS.VAT, txtVATId.Text); }