public VehicleD(Vehicle v, Account owner, string i) { this.v = v; vm = VehicleInfo.Get(v); this.owner = owner; methods.getMethods.lvd.Add(this); id = Convert.ToInt32(i); }
public static void Remove(VehicleManifest manifest) { if (manifest == null) { throw new ArgumentNullException(nameof(manifest)); } Remove((int)manifest.Hash); }
public VehicleD(Vehicle v, Account owner, string i, int invid) { this.v = v; vm = VehicleInfoLoader.VehicleInfoLoader.Get(v); this.owner = owner; methods.getMethods.lvd.Add(this); id = Convert.ToInt32(i); inv = methods.getMethods.getInvById(invid); }