Exemple #1
0
 //根据条件返回相应的对象
 public CashContext(string type)
 {
     switch (type)
     {
     case "正常收费":
         CashNormal cs0 = new CashNormal();
         cs = cs0;
         break;
     case "满300返100":
         CashReturn cr1 = new CashReturn("300", "100");
         cs = cr1;
         break;
     case "打8折":
         CashRebate cr2 = new CashRebate("0.8");
         cs = cr2;
         break;
     }
 }
Exemple #2
0
 //根据条件返回相应的对象
 public static CashSuper createCashAccept(string type)
 {
     CashSuper cs = null;
     switch (type)
     {
     case "正常收费":
         cs = new CashNormal();
         break;
     case "满300返100":
         CashReturn cr1 = new CashReturn("300", "100");
         cs = cr1;
         break;
     case "打8折":
         CashRebate cr2 = new CashRebate("0.8");
         cs = cr2;
         break;
     }
     return cs;
 }
        //根据条件返回相应的对象
        public CashContext(string type)
        {
            switch (type)
            {
            case "正常收费":
                CashNormal cs0 = new CashNormal();
                cs = cs0;
                break;

            case "满300返100":
                CashReturn cr1 = new CashReturn("300", "100");
                cs = cr1;
                break;

            case "打8折":
                CashRebate cr2 = new CashRebate("0.8");
                cs = cr2;
                break;
            }
        }
        public static CashSuper createCashAccept(string type)
        {
            CashSuper cs = null;

            switch (type)
            {
            case "正常收费":
                cs = new CashNormal();
                break;

            case "满300返100":
                CashReturn cr1 = new CashReturn("300", "100");
                break;

            case "打八折":
                CashRebate cr2 = new CashRebate("0.8");
                cs = cr2;
                break;
            }
            return(cs);
        }