Esempio n. 1
0
 public UnitOfWork(
     CuboContext context,
     IOptions <RepositoryConfig> config)
 {
     _context = context;
     _config  = config.Value;
 }
Esempio n. 2
0
 public SoftwareRepository(CuboContext context) : base(context)
 {
 }
Esempio n. 3
0
 public UsuarioRepository(CuboContext context) : base(context)
 {
 }
Esempio n. 4
0
 // Contexto passado pela UnitOfWork
 public Repository(CuboContext context)
 {
     _context = context;
 }