Пример #1
0
        public static bool Delete(Int32 shipGatewayId)
        {
            ShipGateway shipGateway = new ShipGateway();

            if (shipGateway.Load(shipGatewayId))
            {
                return(shipGateway.Delete());
            }
            return(false);
        }
Пример #2
0
 public static bool Delete(ShipGateway shipGateway)
 {
     return(shipGateway.Delete());
 }