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