Exemple #1
0
 public PetSQLiteRepository(PetAppDBContext ctx)
 {
     _ctx = ctx;
 }
 public TypePetSQLRepository(PetAppDBContext context)
 {
     _ctx = context;
 }
Exemple #3
0
 public PetSQLRepository(PetAppDBContext context)
 {
     context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
     _ctx = context;
 }
Exemple #4
0
 public UserSQLRepository(PetAppDBContext context)
 {
     _ctx = context;
 }