Implementing an Interface

Project Name:	CMS12_1.vbp
File Folder:	Ex12_1

	This sample project demonstrates building an interface in a class module. That interface is then implemented in a class by using the Implements keyword and developing the code for every property and method in the interface.
	The resulting application uses the default interface to set the properties for a Customer object and then uses an ISave interface to save the properties. This application does not actually save the data, rather it displays a message box.
	For a challenge, try the following:
- Defining an IFile interface for the file operations defined in Saving Objects to a File example.
- Implementing the IFile interface in the Tasks class defined in the Saving Objects to a File example.

