public CrudRepository(TeamCityContext repositoryPatternDemoContext) { RepositoryContext = repositoryPatternDemoContext; }
public List <Owner> AllOwner() { var context = new TeamCityContext(); return(context.Owners.ToList()); }
public OwnerRepository(TeamCityContext repositoryContext) : base(repositoryContext) { }