public static CustomerAccount CreateCustomerAccount( string name, string notes) { CustomerAccount newAccount = new CustomerAccount(); newAccount.GUID = IDGenerator.GenerateCustomerAccountID(); newAccount.Name = name; newAccount.Notes = notes; return newAccount; }