public void Setup() { trans = new TransactionScope(); venueDAO = new VenueDAO(connectionString); spaceDAO = new SpacesDAO(connectionString); resDAO = new ReservationDAO(connectionString); }
public UserInterface(string connectionString) { this.connectionString = connectionString; venueDAO = new VenueDAO(connectionString); spaceDAO = new SpacesDAO(connectionString); resDAO = new ReservationDAO(connectionString); }