public Task <IncrementCollection> GetIncrementCollectionAsync(string targetLocation) { IncrementCollection collection = incrementCollections.ContainsKey(targetLocation) ? incrementCollections[targetLocation] : null; return(Task.FromResult(collection)); }
public Task SaveIncrementCollectionAsync(IncrementCollection incrementCollection, string targetLocation) { incrementCollections[targetLocation] = incrementCollection; return(Task.CompletedTask); }
public Task SaveIncrementCollectionAsync(IncrementCollection incrementCollection, string targetLocation) { throw new NotImplementedException(); }