Exemple #1
0
 public ImagemRepository(Resposta <Foto> response,
                         DapperContext dapperContext,
                         Resposta <FotoLista> responseLista,
                         Resposta <FotoDetalhe> responseDetalhe,
                         IConfiguration config,
                         IAxWebConfiguracoesRepository _configuracoes) : base(response, dapperContext)
 {
     this.response        = response;
     this.dapperContext   = dapperContext;
     this.config          = config;
     this.responseLista   = responseLista;
     this.responseDetalhe = responseDetalhe;
     this.configuracoes   = _configuracoes;
 }
Exemple #2
0
 public ImagemBusiness(IAxWebConfiguracoesRepository configuracoesRepository, IImagemRepository imagemRepository, Resposta <Foto> resposta)
 {
     this.configuracoesRepository = configuracoesRepository;
     this.imagemRepository        = imagemRepository;
     this.resposta = resposta;
 }