示例#1
0
 public ProgramUI(IConsole consoleForAllReadsAndWrites)
 {
     _console              = consoleForAllReadsAndWrites;
     MasterList            = new MasterList();
     PastCustomerRepo      = new PastCustomerRepo();
     PotentialCustomerRepo = new PotentialCustomerRepo();
     PresentCustomerRepo   = new PresentCustomerRepo();
 }
 public void Arrange()
 {
     _pastCustomerRepo = new PastCustomerRepo();
 }