Beispiel #1
0
 public RepositoryBase(ProjetoDDDContext context)
 {
     Db    = context;
     dbSet = Db.Set <TEntity>();
 }
 public UnitOfWork(ProjetoDDDContext context)
 {
     _context  = context;
     _disposed = false;
 }
 public CategoriaDoProdutoRepository(ProjetoDDDContext context) : base(context)
 {
 }
 public ClienteRepository(ProjetoDDDContext context) : base(context)
 {
 }
Beispiel #5
0
 public EnderecoRepository(ProjetoDDDContext context) : base(context)
 {
     _projetoDDDEntities = context;
 }
Beispiel #6
0
 public PerfilRepository(ProjetoDDDContext context)
     : base(context)
 {
 }
Beispiel #7
0
 public UnitOfWork(ProjetoDDDContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public UnitOfWork(ProjetoDDDContext context)
 {
     _context  = context;
     Customers = new CustomerRepository(_context);
     Endereco  = new EnderecoRepository(_context);
 }
 public ProdutoRepository(ProjetoDDDContext context) : base(context)
 {
 }
Beispiel #10
0
 public CustomerRepository(ProjetoDDDContext context) : base(context)
 {
     _projetoDDDEntities = context;
 }
Beispiel #11
0
        //após o unitof work

        public FiliacaoRepository(ProjetoDDDContext context)
            : base(context)
        {
        }
Beispiel #12
0
 public ComentarioRepository(ProjetoDDDContext context)
     : base(context)
 {
 }