TestProject.Test.BO.TestUtilsCar.CreateUnsavedDefaultCar C# (CSharp) Method

CreateUnsavedDefaultCar() public static method

Creates a new unsaved Car where all properties are null, except ID properties and those with default values. If there are compulsory properties without defaults, saving the object will throw an exception.
public static CreateUnsavedDefaultCar ( ) : Car
return TestProject.BO.Car
		public static Car CreateUnsavedDefaultCar()
		{
			Car car = new Car();
			return car;
		}
    }