/**************************************
 *  describe this class here
 *
 * @author - Nancy Harris
 * @version - V1 - 10/06/2013
 *************************************/
public class CSCardDriver
{
   /**********************************
    * main will create a CSCard object
    * and then call its createStatement method
    * 
    * @param args unused in this application
    **********************************/
    public static void main (String args [])
    {
       CSCard creditCard;
       
       creditCard = new CSCard();
       creditCard.createStatement();
    }
} 