Beispiel #1
0
        public static bool Delete(Int32 shipMethodId, Int32 groupId)
        {
            ShipMethodGroup shipMethodGroup = new ShipMethodGroup();

            if (shipMethodGroup.Load(shipMethodId, groupId))
            {
                return(shipMethodGroup.Delete());
            }
            return(false);
        }
Beispiel #2
0
 public static bool Delete(ShipMethodGroup shipMethodGroup)
 {
     return(shipMethodGroup.Delete());
 }