コード例 #1
0
 public AdjudicacionController(IAdjudicacionRepository adjudicationRepository, IBuscadorAdjudicacionesQuery buscadorAdjudicacionesQuery, ITopEntidadesPorPrecioQuery topEntidadesPorPrecioQuery)
 {
     this.adjudicationRepository = adjudicationRepository;
     this.buscadorAdjudicacionesQuery = buscadorAdjudicacionesQuery;
     this.topEntidadesPorPrecioQuery = topEntidadesPorPrecioQuery;
 }
コード例 #2
0
 public TopEntidadesPorPrecioQuery(IAdjudicacionRepository adjudicacionRepository)
 {
     this.adjudicacionRepository = adjudicacionRepository;
 }