using System; using System.Collections.Generic; using System.Threading.Tasks; namespace MobApp.Services { public interface IDataStore { Task AddItemAsync(T item); Task UpdateItemAsync(T item); Task DeleteItemAsync(string id); Task GetItemAsync(string id); Task> GetItemsAsync(bool forceRefresh = false); } }