public TourPlannerAppFactoryImp() { RouteImagesFolder = ConfigurationManager.AppSettings["RouteImagesFolder"]; ReportPdfsFolder = ConfigurationManager.AppSettings["ReportPdfsFolder"]; tourEntryDAO = DALFactory.CreateTourEntryDAO(); logEntryDAO = DALFactory.CreateLogEntryDAO(); Log.Info("TourPlannerAppFactoryImp constructor without parameter is called."); }
public LogEntryFileDAO() { this.fileAccess = DALFactory.GetFileAccess(); this.tourEntryDAO = DALFactory.CreateTourEntryDAO(); }
public LogEntryPostgresDAO() { this.database = DALFactory.GetDatabase(); this.tourEntryDAO = DALFactory.CreateTourEntryDAO(); }