Beispiel #1
0
 public InteractionsRepo(MyFaceDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public UsersRepo(MyFaceDbContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public PostsRepo(MyFaceDbContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public UsersRepo(MyFaceDbContext context, IHashHelper hashHelper)
 {
     _context    = context;
     _hashHelper = hashHelper;
 }
 public UsersRepo(MyFaceDbContext context, IHashService hashService)
 {
     _context     = context;
     _hashService = hashService;
 }
Beispiel #6
0
 public LoginRepo(MyFaceDbContext context)
 {
     _context = context;
 }