protected AbstractRepository(Postgres db)
 {
     Db = db;
 }
 public CredentialsRepository(Postgres db) : base(db)
 {
 }
예제 #3
0
 public UserRolesRepository(Postgres db) : base(db)
 {
 }
 public UserStatusesRepository(Postgres db, IMemoryCache cache) : base(db)
 {
     Cache = cache;
 }