Nettiers.AdventureWorks.Entities.VAdditionalContactInfoBase.CreateVAdditionalContactInfo C# (CSharp) Method

CreateVAdditionalContactInfo() public static method

A simple factory method to create a new VAdditionalContactInfo instance.
public static CreateVAdditionalContactInfo ( System _contactId, System _firstName, System _middleName, System _lastName, System _telephoneNumber, System _telephoneSpecialInstructions, System _street, System _city, System _stateProvince, System _postalCode, System _countryRegion, System _homeAddressSpecialInstructions, System _emailAddress, System _emailSpecialInstructions, System _emailTelephoneNumber, System _rowguid, System _modifiedDate ) : VAdditionalContactInfo
_contactId System
_firstName System
_middleName System
_lastName System
_telephoneNumber System
_telephoneSpecialInstructions System
_street System
_city System
_stateProvince System
_postalCode System
_countryRegion System
_homeAddressSpecialInstructions System
_emailAddress System
_emailSpecialInstructions System
_emailTelephoneNumber System
_rowguid System
_modifiedDate System
return VAdditionalContactInfo
		public static VAdditionalContactInfo CreateVAdditionalContactInfo(System.Int32 _contactId, System.String _firstName, System.String _middleName, System.String _lastName, System.String _telephoneNumber, System.String _telephoneSpecialInstructions, System.String _street, System.String _city, System.String _stateProvince, System.String _postalCode, System.String _countryRegion, System.String _homeAddressSpecialInstructions, System.String _emailAddress, System.String _emailSpecialInstructions, System.String _emailTelephoneNumber, System.Guid _rowguid, System.DateTime _modifiedDate)
		{
			VAdditionalContactInfo newVAdditionalContactInfo = new VAdditionalContactInfo();
			newVAdditionalContactInfo.ContactId = _contactId;
			newVAdditionalContactInfo.FirstName = _firstName;
			newVAdditionalContactInfo.MiddleName = _middleName;
			newVAdditionalContactInfo.LastName = _lastName;
			newVAdditionalContactInfo.TelephoneNumber = _telephoneNumber;
			newVAdditionalContactInfo.TelephoneSpecialInstructions = _telephoneSpecialInstructions;
			newVAdditionalContactInfo.Street = _street;
			newVAdditionalContactInfo.City = _city;
			newVAdditionalContactInfo.StateProvince = _stateProvince;
			newVAdditionalContactInfo.PostalCode = _postalCode;
			newVAdditionalContactInfo.CountryRegion = _countryRegion;
			newVAdditionalContactInfo.HomeAddressSpecialInstructions = _homeAddressSpecialInstructions;
			newVAdditionalContactInfo.EmailAddress = _emailAddress;
			newVAdditionalContactInfo.EmailSpecialInstructions = _emailSpecialInstructions;
			newVAdditionalContactInfo.EmailTelephoneNumber = _emailTelephoneNumber;
			newVAdditionalContactInfo.Rowguid = _rowguid;
			newVAdditionalContactInfo.ModifiedDate = _modifiedDate;
			return newVAdditionalContactInfo;
		}