Пример #1
0
        public static bool Delete(Int32 shipZoneId)
        {
            ShipZone shipZone = new ShipZone();

            if (shipZone.Load(shipZoneId))
            {
                return(shipZone.Delete());
            }
            return(false);
        }
Пример #2
0
 public static bool Delete(ShipZone shipZone)
 {
     return(shipZone.Delete());
 }