public ServicosRepositorio(AgendamentosDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #2
0
 public ProcedimentosRepositorio(AgendamentosDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #3
0
 public Repositorios(IConfiguration configuration)
 {
     this.dbContext = new AgendamentosDbContext(configuration.GetConnectionString("agenda-connection-str"));
 }
 public PessoasRepositorio(AgendamentosDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
예제 #5
0
 public AgendamentosRepository(AgendamentosDbContext _ctx)
 {
     _contexto = _ctx;
 }