public EscolasController(IEscolasAppService appservice, IEscolasLogradouroAppService appserviceLogra, IEscolasContatoAppService appserviceContato, d1000DataContext dbContext)
 {
     this.appservice        = appservice;
     this.appserviceLogra   = appserviceLogra;
     this.appserviceContato = appserviceContato;
     this._dbContext        = dbContext;
 }
 public AlunosLogradouroRepository(
     IMemoryCache memoryCache,
     d1000DataContext context) : base(memoryCache, context)
 {
     _dbContext = context;
 }
示例#3
0
 public EscolasRepository(
     IMemoryCache memoryCache,
     d1000DataContext context) : base(memoryCache, context)
 {
     _dbContext = context;
 }