Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created June 20, 2021 13:37
Show Gist options
  • Save rdelrosario/cdd2e8742b33149528d4fa6cdef46c5d to your computer and use it in GitHub Desktop.
Save rdelrosario/cdd2e8742b33149528d4fa6cdef46c5d to your computer and use it in GitHub Desktop.
namespace ReactiveToDoSample.Managers
{
public interface IItemManager
{
public IObservable<IChangeSet<Item, string>> ItemChanges { get; }
public Optional<Item> Get(string id);
public void AddOrUpdate(Item item);
public void Remove(Item item);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment