public AccountActions()
 {
     _processor = new AccountProcessor();
 }
 public AccountActions(IDataAccessLayer dal)     // NOTE:    In order to create a REAL AccountActions object will use a REAL AccountProcessor
                                                 //          with a MOCKED data access layer, we need a constructor that accepts an INTERFACE
                                                 //          (which allows us to pass in an object that MOCKS the data access layer)
 {
     _processor = new AccountProcessor(dal);
 }