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