This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/MobileApps/MyDriving/MyDriving.DataStore.Mock/Stores/PhotoStore.cs

43 lines
1.1 KiB
C#
Raw Normal View History

2022-11-03 20:41:13 +00:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
using MyDriving.DataObjects;
using MyDriving.DataStore.Abstractions;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Linq;
namespace MyDriving.DataStore.Mock.Stores
{
public class PhotoStore : BaseStore<Photo>, IPhotoStore
{
readonly List<Photo> photos;
public PhotoStore()
{
photos = new List<Photo>();
}
public override Task<bool> PullLatestAsync()
{
return Task.FromResult(true);
}
public override Task<bool> SyncAsync()
{
return Task.FromResult(true);
}
public Task<IEnumerable<Photo>> GetTripPhotos(string tripId)
{
return Task.FromResult(photos.Where(a => a.TripId == tripId));
}
public override Task<bool> InsertAsync(Photo item)
{
photos.Add(item);
return Task.FromResult(true);
}
}
}