Nettiers.AdventureWorks.Entities.VJobCandidateBase.CreateVJobCandidate C# (CSharp) Method

CreateVJobCandidate() public static method

A simple factory method to create a new VJobCandidate instance.
public static CreateVJobCandidate ( System _jobCandidateId, System _employeeId, System _safeNameNamePrefix, System _safeNameNameFirst, System _safeNameNameMiddle, System _safeNameNameLast, System _safeNameNameSuffix, System _skills, System _safeNameAddrType, System _safeNameAddrLocCountryRegion, System _safeNameAddrLocState, System _safeNameAddrLocCity, System _safeNameAddrPostalCode, System _email, System _webSite, System _modifiedDate ) : VJobCandidate
_jobCandidateId System
_employeeId System
_safeNameNamePrefix System
_safeNameNameFirst System
_safeNameNameMiddle System
_safeNameNameLast System
_safeNameNameSuffix System
_skills System
_safeNameAddrType System
_safeNameAddrLocCountryRegion System
_safeNameAddrLocState System
_safeNameAddrLocCity System
_safeNameAddrPostalCode System
_email System
_webSite System
_modifiedDate System
return VJobCandidate
		public static VJobCandidate CreateVJobCandidate(System.Int32 _jobCandidateId, System.Int32? _employeeId, System.String _safeNameNamePrefix, System.String _safeNameNameFirst, System.String _safeNameNameMiddle, System.String _safeNameNameLast, System.String _safeNameNameSuffix, System.String _skills, System.String _safeNameAddrType, System.String _safeNameAddrLocCountryRegion, System.String _safeNameAddrLocState, System.String _safeNameAddrLocCity, System.String _safeNameAddrPostalCode, System.String _email, System.String _webSite, System.DateTime _modifiedDate)
		{
			VJobCandidate newVJobCandidate = new VJobCandidate();
			newVJobCandidate.JobCandidateId = _jobCandidateId;
			newVJobCandidate.EmployeeId = _employeeId;
			newVJobCandidate.SafeNameNamePrefix = _safeNameNamePrefix;
			newVJobCandidate.SafeNameNameFirst = _safeNameNameFirst;
			newVJobCandidate.SafeNameNameMiddle = _safeNameNameMiddle;
			newVJobCandidate.SafeNameNameLast = _safeNameNameLast;
			newVJobCandidate.SafeNameNameSuffix = _safeNameNameSuffix;
			newVJobCandidate.Skills = _skills;
			newVJobCandidate.SafeNameAddrType = _safeNameAddrType;
			newVJobCandidate.SafeNameAddrLocCountryRegion = _safeNameAddrLocCountryRegion;
			newVJobCandidate.SafeNameAddrLocState = _safeNameAddrLocState;
			newVJobCandidate.SafeNameAddrLocCity = _safeNameAddrLocCity;
			newVJobCandidate.SafeNameAddrPostalCode = _safeNameAddrPostalCode;
			newVJobCandidate.Email = _email;
			newVJobCandidate.WebSite = _webSite;
			newVJobCandidate.ModifiedDate = _modifiedDate;
			return newVJobCandidate;
		}