Nettiers.AdventureWorks.Entities.VSalesPersonSalesByFiscalYearsBase.CreateVSalesPersonSalesByFiscalYears C# (CSharp) Method

CreateVSalesPersonSalesByFiscalYears() public static method

A simple factory method to create a new VSalesPersonSalesByFiscalYears instance.
public static CreateVSalesPersonSalesByFiscalYears ( System _salesPersonId, System _fullName, System _title, System _salesTerritory, System _safeName2002, System _safeName2003, System _safeName2004 ) : VSalesPersonSalesByFiscalYears
_salesPersonId System
_fullName System
_title System
_salesTerritory System
_safeName2002 System
_safeName2003 System
_safeName2004 System
return VSalesPersonSalesByFiscalYears
		public static VSalesPersonSalesByFiscalYears CreateVSalesPersonSalesByFiscalYears(System.Int32? _salesPersonId, System.String _fullName, System.String _title, System.String _salesTerritory, System.Decimal? _safeName2002, System.Decimal? _safeName2003, System.Decimal? _safeName2004)
		{
			VSalesPersonSalesByFiscalYears newVSalesPersonSalesByFiscalYears = new VSalesPersonSalesByFiscalYears();
			newVSalesPersonSalesByFiscalYears.SalesPersonId = _salesPersonId;
			newVSalesPersonSalesByFiscalYears.FullName = _fullName;
			newVSalesPersonSalesByFiscalYears.Title = _title;
			newVSalesPersonSalesByFiscalYears.SalesTerritory = _salesTerritory;
			newVSalesPersonSalesByFiscalYears.SafeName2002 = _safeName2002;
			newVSalesPersonSalesByFiscalYears.SafeName2003 = _safeName2003;
			newVSalesPersonSalesByFiscalYears.SafeName2004 = _safeName2004;
			return newVSalesPersonSalesByFiscalYears;
		}