public async Task <T> LoadCompressedFileAsync <T>(string fileName) where T : class { await FileIOHelper.MigrateDataAsync(ApplicationData.Current.LocalFolder, fileName); return(await FileIOHelper.LoadCompressedAsync <T>(ApplicationData.Current.LocalFolder, fileName)); }
public Task <T> LoadCompressedFileAsync <T>(string fileName) where T : class { return(FileIOHelper.LoadCompressedAsync <T>(ApplicationData.Current.LocalFolder, fileName)); }