public static bool Delete(Int32 shipMethodId)
        {
            ShipMethod shipMethod = new ShipMethod();

            if (shipMethod.Load(shipMethodId))
            {
                return(shipMethod.Delete());
            }
            return(false);
        }
 public static bool Delete(ShipMethod shipMethod)
 {
     return(shipMethod.Delete());
 }