Example #1
0
        public static bool Delete(Int32 couponId, Int32 shipMethodId)
        {
            CouponShipMethod couponShipMethod = new CouponShipMethod();

            if (couponShipMethod.Load(couponId, shipMethodId))
            {
                return(couponShipMethod.Delete());
            }
            return(false);
        }
Example #2
0
 public static bool Delete(CouponShipMethod couponShipMethod)
 {
     return(couponShipMethod.Delete());
 }