Skip to content

Instantly share code, notes, and snippets.

@fractos
Last active August 29, 2015 14:20
The IUserStore interface
using System.Collections.Generic;
using Inversion.Data;
using Harness.Example.Model;
namespace Harness.Example.Store
{
public interface IUserStore : IStore
{
User Get(string username);
IEnumerable<User> GetAll();
void Put(User user);
void Delete(User user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment