public static bool Delete(Int32 basketShipmentId) { BasketShipment basketShipment = new BasketShipment(); if (basketShipment.Load(basketShipmentId)) { return(basketShipment.Delete()); } return(false); }
public static bool Delete(BasketShipment basketShipment) { return(basketShipment.Delete()); }