public ValuesController(ProAgilContext contex)
 {
     _contex = contex;
 }
 public UnitOfWork(ProAgilContext context)
 {
     _context = context;
 }
示例#3
0
 public ValuesController(ProAgilContext context)
 {
     _context = context;
 }
 public WeatherForecastController(ProAgilContext proAgilContext)
 {
     this.Context = proAgilContext;
 }
示例#5
0
 public ValuesController(ProAgilContext dataContext)
 {
     _proAgilContext = dataContext;
 }
 public WeatherForecastController(ProAgilContext context) => _context = context;
示例#7
0
 public WeatherForecastController(ProAgilContext contexto)
 {
     this.contexto = contexto;
 }
 private void EnsureSeedData(ProAgilContext context)
 {
 }
示例#9
0
 public PalestranteRepositorio(ProAgilContext context) : base(context)
 {
     _context = context;
 }
 public ProAgilRepository(ProAgilContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking; // nao travar recurso
 }
示例#11
0
 public LotesRepository(IRepository <Lote> repository, ProAgilContext context) : base(context)
 {
     _repository = repository;
 }
示例#12
0
 public Repository(ProAgilContext context)
 {
     _context       = context;
     _dbSetQuryable = _context.Set <TEntity>().AsQueryable();
 }
 public RepositorioBase(ProAgilContext proAgilContext)
 {
     this.proAgilContext = proAgilContext;
 }
示例#14
0
 public RedesSociaisRepository(IRepository <RedeSocial> repository, ProAgilContext context) : base(context)
 {
     _repository = repository;
 }
示例#15
0
 public EventosRepository(IRepository <Evento> repository, ProAgilContext context) : base(context)
 {
     _repository = repository;
 }
示例#16
0
 public WeatherForecast(ProAgilContext context)
 {
     _context = context;
 }
示例#17
0
 public EventosController(IProAgilRepository repo, ProAgilContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _repo    = repo;
     _context = context;
 }
示例#18
0
 public EventoRepositorio(ProAgilContext proAgilContext) : base(proAgilContext)
 {
 }
示例#19
0
 public PalestranteController(ProAgilContext context)
 {
     this._context          = context;
     this.ProAgilRepository = new ProAgilRepository(_context);
 }
示例#20
0
 public ProAgilRepository(ProAgilContext context)
 {
     _context = context;
 }
示例#21
0
 public ValueController(ProAgilContext context)
 {
     this.Context = context;
 }
示例#22
0
 public IndexController(ProAgilContext context)
 {
     Context = context;
 }
示例#23
0
 public ValuesController(ProAgilContext proAgilContext)
 {
     this.ProAgilContext = proAgilContext;
 }
示例#24
0
 public EventoRepository(ProAgilContext context)
     : base(context)
 {
     _context = context;
 }
示例#25
0
 public WeatherForecastController(ProAgilContext context)
 {
     this._context = context;
 }
示例#26
0
 public BaseContext(ProAgilContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }
 public ValuesController(ProAgilContext Context)
 {
     this._context = Context;
 }
示例#28
0
 public EventRepository(ProAgilContext context) : base(context)
 {
 }
示例#29
0
 public ValuesController(ProAgilContext contexto)
 {
     _contexto = contexto;
 }
 public WeatherForecastController(ILogger <WeatherForecastController> logger, ProAgilContext context)
 {
     _context = context;
     _logger  = logger;
 }