Exemple #1
0
 public CrudRepository(TeamCityContext repositoryPatternDemoContext)
 {
     RepositoryContext = repositoryPatternDemoContext;
 }
Exemple #2
0
        public List <Owner> AllOwner()
        {
            var context = new TeamCityContext();

            return(context.Owners.ToList());
        }
 public OwnerRepository(TeamCityContext repositoryContext) : base(repositoryContext)
 {
 }