/// <summary>
 /// default constructor, does not log query information
 /// </summary>
 public StoreApplication()
 {
     DataRepo = new StoreRepository();
 }
 /// <summary>
 /// Overloaded constructor that takes a streamwriter object so it can log query information
 /// </summary>
 /// <param name="logger"></param>
 public StoreApplication(StreamWriter logger)
 {
     DataRepo = new StoreRepository(logger);
 }