Implement and configure Worker Service to orchestrate data fetchers - Implement API endpoints for stock market data
		
			
				
	
	
		
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			337 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Mercados.Core.Entities;
 | |
| 
 | |
| namespace Mercados.Infrastructure.Persistence.Repositories
 | |
| {
 | |
|     public interface ICotizacionBolsaRepository : IBaseRepository
 | |
|     {
 | |
|         Task GuardarMuchosAsync(IEnumerable<CotizacionBolsa> cotizaciones);
 | |
|         Task<IEnumerable<CotizacionBolsa>> ObtenerUltimasPorMercadoAsync(string mercado);
 | |
|     }
 | |
| } |