Пример #1
0
        public void ShipInformation(ShipInformationList shp, string whereami, ISystem system, DB.SQLiteConnectionUser conn)
        {                                   // new will come along and provide the new ship info
            //System.Diagnostics.Debug.WriteLine(EventTimeUTC + " Buy");
            if (StoreOldShipId != null && StoreOldShipFD != null)
            {
                shp.Store(StoreOldShipFD, StoreOldShipId.Value, whereami, system.Name);
            }

            if (SellOldShipId != null && SellOldShipFD != null)
            {
                shp.Sell(SellOldShipFD, SellOldShipId.Value);
            }
        }
Пример #2
0
 public void ShipInformation(ShipInformationList shp, string whereami, ISystem system, DB.SQLiteConnectionUser conn)
 {
     shp.Sell(ShipType, SellShipId);
 }
Пример #3
0
 public void ShipInformation(ShipInformationList shp, string whereami, ISystem system, DB.SQLiteConnectionUser conn)
 {
     //Debug.WriteLine(EventTimeUTC + " SELL");
     shp.Sell(ShipTypeFD, SellShipId);
 }
Пример #4
0
 public void ShipInformation(ShipInformationList shp, string whereami, ISystem system)
 {
     shp.Sell(ShipType, SellShipId);
 }