Exemplo n.º 1
0
        public static bool Delete(Int32 shipZoneId, String countryCode)
        {
            ShipZoneCountry shipZoneCountry = new ShipZoneCountry();

            if (shipZoneCountry.Load(shipZoneId, countryCode))
            {
                return(shipZoneCountry.Delete());
            }
            return(false);
        }
Exemplo n.º 2
0
 public static bool Delete(ShipZoneCountry shipZoneCountry)
 {
     return(shipZoneCountry.Delete());
 }