Skip to content

Instantly share code, notes, and snippets.

@evgomes
Created January 28, 2019 12:07
Show Gist options
  • Save evgomes/ce2882c09b4b84e25306082e16c11d57 to your computer and use it in GitHub Desktop.
Save evgomes/ce2882c09b4b84e25306082e16c11d57 to your computer and use it in GitHub Desktop.
Base repository, from Supermarket API
using Supermarket.API.Persistence.Contexts;
namespace Supermarket.API.Persistence.Repositories
{
public abstract class BaseRepository
{
protected readonly AppDbContext _context;
public BaseRepository(AppDbContext context)
{
_context = context;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment