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

            return(context.Owners.ToList());
        }
示例#3
0
 public OwnerRepository(TeamCityContext repositoryContext) : base(repositoryContext)
 {
 }