public void f_Execute(C_Customer c)
 {
     f_ExecuteProcess(c);
     if (this.o_Next != null)
     {
         this.o_Next.v_ONAY = this.v_ONAY;
         this.o_Next.f_Execute(c);
     }
 }
Exemple #2
0
        public override void f_ExecuteProcess(C_Customer customer)
        {
            int v_kbbScore = 1200;

            if (v_kbbScore >= 1000)
            {
                base.v_ONAY = true;
            }
            else
            {
                base.v_ONAY = true;
            }
        }
 public override void f_ExecuteProcess(C_Customer customer)
 {
     if (base.v_ONAY)
     {
         bool v_guarantorisfine = true;
         if (v_guarantorisfine)
         {
             base.v_ONAY = true;
         }
         else
         {
             base.v_ONAY = false;
         }
     }
 }
 public override void f_ExecuteProcess(C_Customer customer)
 {
     if (base.v_ONAY)
     {
         bool EarningIsFine = true;
         if (EarningIsFine)
         {
             base.v_ONAY = true;
         }
         else
         {
             base.v_ONAY = false;
         }
     }
 }
 public override void f_ExecuteProcess(C_Customer customer)
 {
     if (base.v_ONAY)
     {
         int v_PaymentDelayTime = 1;
         if (v_PaymentDelayTime > 3)
         {
             base.v_ONAY = false;
         }
         else
         {
             base.v_ONAY = true;
         }
     }
 }
 public abstract void f_ExecuteProcess(C_Customer customer);