public UnitOfWork(GamersCommunityContext gamersCommunityContext)
 {
     this._gcContext        = gamersCommunityContext;
     this.gcGenreRepository = new GcGenreRepository(this._gcContext);
 }
 public Repository(GamersCommunityContext context)
 {
     Context = context;
 }
Ejemplo n.º 3
0
 public GcGenreRepository(GamersCommunityContext gamersCommunityContext)
 {
     _DbContext = gamersCommunityContext;
 }