Skip to content

Instantly share code, notes, and snippets.

@aamiraftab
Last active May 7, 2016 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aamiraftab/3a6a026168262e21e4a950d81131c8aa to your computer and use it in GitHub Desktop.
Save aamiraftab/3a6a026168262e21e4a950d81131c8aa to your computer and use it in GitHub Desktop.
public class PersonRepository : GenericRepository<Person>, IPersonRepository
{
public PersonRepository(IUnitOfWork uow) : base(uow)
{
}
public Person GetPersonById(long id)
{
return GetById(id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment