public static View_CustomerInformation CreateView_CustomerInformation(string acctNum, string customerID, string firstName, string lastName) { View_CustomerInformation view_CustomerInformation = new View_CustomerInformation(); view_CustomerInformation.AcctNum = acctNum; view_CustomerInformation.CustomerID = customerID; view_CustomerInformation.FirstName = firstName; view_CustomerInformation.LastName = lastName; return(view_CustomerInformation); }
public void AddToView_CustomerInformation(View_CustomerInformation view_CustomerInformation) { base.AddObject("View_CustomerInformation", view_CustomerInformation); }
public static View_CustomerInformation CreateView_CustomerInformation(string acctNum, string customerID, string firstName, string lastName) { View_CustomerInformation view_CustomerInformation = new View_CustomerInformation(); view_CustomerInformation.AcctNum = acctNum; view_CustomerInformation.CustomerID = customerID; view_CustomerInformation.FirstName = firstName; view_CustomerInformation.LastName = lastName; return view_CustomerInformation; }