public GameDataStorageLayer(GameDataStorageLayerUtils.DataStorageAreas dataAccessType, string dataType, string dataLocation)
 {
     storageInterface = new GameDataStorageInterface(dataAccessType, dataType, dataLocation);
     primeDataFromStorage();
 }
 public GameDataStorageLayer()
 {
     storageInterface = new GameDataStorageInterface();
 }