コード例 #1
0
 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"));
 }
コード例 #4
0
 public PessoasRepositorio(AgendamentosDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
コード例 #5
0
 public AgendamentosRepository(AgendamentosDbContext _ctx)
 {
     _contexto = _ctx;
 }