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