Testing.AWBuildVersion.CreateAWBuildVersion C# (CSharp) Method

CreateAWBuildVersion() public static method

Create a new AWBuildVersion object.
public static CreateAWBuildVersion ( global systemInformationID, global database_Version, global versionDate, global modifiedDate ) : AWBuildVersion
systemInformationID global Initial value of the SystemInformationID property.
database_Version global Initial value of the Database_Version property.
versionDate global Initial value of the VersionDate property.
modifiedDate global Initial value of the ModifiedDate property.
return AWBuildVersion
        public static AWBuildVersion CreateAWBuildVersion(global::System.Byte systemInformationID, global::System.String database_Version, global::System.DateTime versionDate, global::System.DateTime modifiedDate)
        {
            AWBuildVersion aWBuildVersion = new AWBuildVersion();
            aWBuildVersion.SystemInformationID = systemInformationID;
            aWBuildVersion.Database_Version = database_Version;
            aWBuildVersion.VersionDate = versionDate;
            aWBuildVersion.ModifiedDate = modifiedDate;
            return aWBuildVersion;
        }