Esempio n. 1
0
 public SingleStatisticsEntry(SingleStatisticsEntry characterStatisticsJson)
 {
     IskDestroyed    = characterStatisticsJson.IskDestroyed;
     PointsLost      = characterStatisticsJson.PointsLost;
     ShipsLost       = characterStatisticsJson.ShipsLost;
     PointsDestroyed = characterStatisticsJson.PointsDestroyed;
     ShipsDestroyed  = characterStatisticsJson.ShipsDestroyed;
     IskLost         = characterStatisticsJson.IskLost;
 }
Esempio n. 2
0
 public SingleStatisticsForShipType(int characterId, int shipTypeId, SingleStatisticsEntry entry)
 {
     CharacterID     = characterId;
     ShipTypeId      = shipTypeId;
     IskLost         = entry.IskLost;
     IskDestroyed    = entry.IskDestroyed;
     PointsLost      = entry.PointsLost;
     PointsDestroyed = entry.PointsDestroyed;
     CountLost       = entry.ShipsLost;
     CountDestroyed  = entry.ShipsDestroyed;
 }