Esempio n. 1
0
 partial void OnBrandChanging(global::Console._Brands value);
Esempio n. 2
0
        public static Car CreateCar(int ID, double amountMade, bool aPK, global::System.DateTimeOffset timeWhenAddedToDatabase, global::Console._Brands brand)
        {
            Car car = new Car();

            car.ID         = ID;
            car.AmountMade = amountMade;
            car.APK        = aPK;
            car.TimeWhenAddedToDatabase = timeWhenAddedToDatabase;
            car.Brand = brand;
            return(car);
        }