Skip to content

Instantly share code, notes, and snippets.

@kmckelvin
Created August 27, 2010 23:39
Show Gist options
  • Save kmckelvin/554393 to your computer and use it in GitHub Desktop.
Save kmckelvin/554393 to your computer and use it in GitHub Desktop.
namespace MvcMusicStore.Models
{
public interface IMusicStoreContext
{
ISession Session { get; }
IQueryable<Album> Albums { get; }
IQueryable<Artist> Artists { get; }
IQueryable<Cart> Carts { get; }
IQueryable<Genre> Genres { get; }
IQueryable<Order> Orders { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment