Esempio n. 1
0
 public UserLogRepository(MesGamificationContext context) : base(context)
 {
 }
Esempio n. 2
0
 public UnitOfWork(MesGamificationContext context)
 {
     _context = context ?? throw new ArgumentException(nameof(context));
 }
Esempio n. 3
0
 public RepositoryBase(MesGamificationContext context)
 {
     Collection = context.GetCollection <T>();
 }