10 lines
		
	
	
		
			267 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			267 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								using GestionIntegral.Api.Models.Suscripciones;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace GestionIntegral.Api.Data.Repositories.Suscripciones
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public interface IFormaPagoRepository
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        Task<IEnumerable<FormaPago>> GetAllAsync();
							 | 
						||
| 
								 | 
							
								        Task<FormaPago?> GetByIdAsync(int id);
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |